# HG changeset patch # User Dan # Date 1199935389 18000 # Node ID 4e26d6079910f0ca0ee04ad23d6db408e61860d0 # Parent a48b72312f6d33376ef8710f743b00c97cf684de PHP4 fix: sidebar missing in installer UI: problem was wrongly named constructor for templateIndividualSafe diff -r a48b72312f6d -r 4e26d6079910 includes/template.php --- a/includes/template.php Wed Jan 09 22:13:42 2008 -0500 +++ b/includes/template.php Wed Jan 09 22:23:09 2008 -0500 @@ -2095,9 +2095,9 @@ /** * PHP 4 constructor. */ - function templateIndividual($text) + function templateIndividualSafe($text, $parent) { - $this->__construct($text); + $this->__construct($text, $parent); } /** * Assigns an array of string values to the template. Strings can be accessed from the template by inserting {KEY_NAME} in the template file.