X-Git-Url: https://git.llucax.com/software/bife/bife-all.git/blobdiff_plain/83c0aaf19ae9241ba9f30da47013479ee761685e..2ca13aad316873633c3fd9ba59ee2f5579d90272:/src/BIFE/Container.php?ds=sidebyside diff --git a/src/BIFE/Container.php b/src/BIFE/Container.php index 14c7105..7c138ac 100644 --- a/src/BIFE/Container.php +++ b/src/BIFE/Container.php @@ -50,12 +50,14 @@ class BIFE_Container extends BIFE_Widget { /** * Constructor. * + * @param array $attrs Attributes. + * * @return void * @access public */ - function BIFE_Container() // ~X2C + function BIFE_Container($attrs) // ~X2C { - $this->__construct(); + $this->__construct($attrs); } // -X2C @@ -63,11 +65,14 @@ class BIFE_Container extends BIFE_Widget { /** * Constructor. * + * @param array $attrs Attributes. + * * @return void * @access public */ - function __construct() // ~X2C + function __construct($attrs) // ~X2C { + parent::__construct($attrs); $this->contents = array(); } // -X2C