projects
/
horde.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8a93df9
)
Call parent ctor.
author
Jan Schneider
<jan@horde.org>
Tue, 12 Oct 2010 21:34:54 +0000
(23:34 +0200)
committer
Jan Schneider
<jan@horde.org>
Wed, 13 Oct 2010 00:34:41 +0000
(
02:34
+0200)
framework/Core/lib/Horde/Core/Prefs/Identity.php
patch
|
blob
|
history
diff --git
a/framework/Core/lib/Horde/Core/Prefs/Identity.php
b/framework/Core/lib/Horde/Core/Prefs/Identity.php
index
eb2bc03
..
5a8fdd3
100644
(file)
--- 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);
}
/**