Call parent ctor.
authorJan Schneider <jan@horde.org>
Tue, 12 Oct 2010 21:34:54 +0000 (23:34 +0200)
committerJan Schneider <jan@horde.org>
Wed, 13 Oct 2010 00:34:41 +0000 (02:34 +0200)
framework/Core/lib/Horde/Core/Prefs/Identity.php

index eb2bc03..5a8fdd3 100644 (file)
@@ -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);
     }
 
     /**