From: Jan Schneider Date: Tue, 12 Oct 2010 21:34:54 +0000 (+0200) Subject: Call parent ctor. X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=684c31c32776752fc532cdaf26e9fe0e96727ff1;p=horde.git Call parent ctor. --- diff --git a/framework/Core/lib/Horde/Core/Prefs/Identity.php b/framework/Core/lib/Horde/Core/Prefs/Identity.php index eb2bc0331..5a8fdd31f 100644 --- a/framework/Core/lib/Horde/Core/Prefs/Identity.php +++ b/framework/Core/lib/Horde/Core/Prefs/Identity.php @@ -25,10 +25,13 @@ class Horde_Core_Prefs_Identity extends Horde_Prefs_Identity /** * Constructor. + * + * @see Horde_Prefs_Identity::__construct() */ - public function __construct() + public function __construct($params = array()) { $this->_coreDict = new Horde_Translation_Gettext('Horde_Core', dirname(__FILE__) . '/../../../../locale'); + parent::__construct($params); } /**