]> git.llucax.com Git - software/bife/bife-all.git/blobdiff - src/BIFE/Title.php
* Added __construc() method for PHP5 forward compatibility.
[software/bife/bife-all.git] / src / BIFE / Title.php
index 518ded2df3141720475c3372fbdf62b554bedfc0..6ff15cf2518245846649b815f6f70d02d1d27067 100644 (file)
@@ -50,7 +50,22 @@ class BIFE_Title extends BIFE_Generic {
      */
     function BIFE_Title($attrs) // ~X2C
     {
-        $this->BIFE_Generic($attrs);
+        $this->__construct($attrs);
+    }
+    // -X2C
+
+    // +X2C Operation 55
+    /**
+     * Constructor.
+     *
+     * @param  array $attrs Attributes.
+     *
+     * @return void
+     * @access public
+     */
+    function __construct($attrs) // ~X2C
+    {
+        parent::__construct($attrs);
     }
     // -X2C