From: Michael M Slusarz Date: Wed, 20 Oct 2010 18:15:44 +0000 (-0600) Subject: Bug #9308: Fix variable name X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=5ff08c0c86b43886cbbaa15cc4f1a5465955b72c;p=horde.git Bug #9308: Fix variable name --- diff --git a/framework/Prefs/lib/Horde/Prefs/Identity.php b/framework/Prefs/lib/Horde/Prefs/Identity.php index 5928a5f3c..9afbadb87 100644 --- a/framework/Prefs/lib/Horde/Prefs/Identity.php +++ b/framework/Prefs/lib/Horde/Prefs/Identity.php @@ -132,7 +132,7 @@ class Horde_Prefs_Identity } if ($this->_prefs->isLocked($this->_prefnames['default_identity'])) { - foreach ($this->_properties as $key) { + foreach ($this->_prefnames['properties'] as $key) { $value = $this->getValue($key); if (is_array($value)) { $value = implode("\n", $value); @@ -300,7 +300,7 @@ class Horde_Prefs_Identity */ public function isLocked() { - foreach ($this->_properties as $key) { + foreach ($this->_prefnames['properties'] as $key) { if (!$this->_prefs->isLocked($key)) { return false; }