PHP4 fix: sidebar missing in installer UI: problem was wrongly named constructor for templateIndividualSafe
authorDan
Wed, 09 Jan 2008 22:23:09 -0500
changeset 444 4e26d6079910
parent 443 a48b72312f6d
child 445 62e1a6f3de84
child 446 27f5ac58992c
PHP4 fix: sidebar missing in installer UI: problem was wrongly named constructor for templateIndividualSafe
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.