From: Michael M Slusarz Date: Mon, 23 Aug 2010 21:05:06 +0000 (-0600) Subject: Fix static variable access. X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=a02cde0f94a1ec061639752b52b4195207559c89;p=horde.git Fix static variable access. --- diff --git a/imp/lib/Folder.php b/imp/lib/Folder.php index f8534baa1..196ce3063 100644 --- a/imp/lib/Folder.php +++ b/imp/lib/Folder.php @@ -270,7 +270,7 @@ class IMP_Folder /* Special use flags. */ $special_use = array(); - foreach ($this->specialUse as $key => $val) { + foreach (self::$specialUse as $key => $val) { if (!empty($this->_opts[$key])) { $special_use[] = $val; }