PHP4 fix: sidebar missing in installer UI: problem was wrongly named constructor for templateIndividualSafe
--- 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.