From: Jan Schneider Date: Tue, 5 Oct 2010 01:06:07 +0000 (+0200) Subject: Call parent ctor. X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=eb41e50b84ce1d513b73c7996ff7ebd326176655;p=horde.git Call parent ctor. --- diff --git a/framework/Block/lib/Horde/Block/Layout/Manager.php b/framework/Block/lib/Horde/Block/Layout/Manager.php index 9cb763562..fc97da6ac 100644 --- a/framework/Block/lib/Horde/Block/Layout/Manager.php +++ b/framework/Block/lib/Horde/Block/Layout/Manager.php @@ -103,6 +103,7 @@ class Horde_Block_Layout_Manager extends Horde_Block_Layout */ function __construct($collection, $layout = array()) { + parent::__construct(); $this->_collection = $collection; $this->_layout = $layout; $this->_editUrl = Horde::selfUrl(); diff --git a/framework/Block/lib/Horde/Block/Layout/View.php b/framework/Block/lib/Horde/Block/Layout/View.php index d2065928c..ef9f8348f 100644 --- a/framework/Block/lib/Horde/Block/Layout/View.php +++ b/framework/Block/lib/Horde/Block/Layout/View.php @@ -41,6 +41,7 @@ class Horde_Block_Layout_View extends Horde_Block_Layout public function __construct($layout = array(), $editUrl = '', $viewUrl = '') { + parent::__construct(); $this->_layout = $layout; $this->_editUrl = $editUrl; $this->_viewUrl = $viewUrl;