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