From e6304eec4580a03c4e9e04496b662f33c370e2a1 Mon Sep 17 00:00:00 2001 From: Ralf Becker Date: Tue, 20 May 2014 15:55:17 +0000 Subject: [PATCH] fixed PHP Fatal error: Attempt to unset static property accounts::$cache --- phpgwapi/inc/class.accounts.inc.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/phpgwapi/inc/class.accounts.inc.php b/phpgwapi/inc/class.accounts.inc.php index d2427f5e0c..9524bc2586 100644 --- a/phpgwapi/inc/class.accounts.inc.php +++ b/phpgwapi/inc/class.accounts.inc.php @@ -178,8 +178,7 @@ class accounts $this->config = $backend; $backend = null; self::$_instance = $this; // also set instance returned by singleton - unset(self::$cache); // and empty our internal (session) cache - self::$cache = array(); + self::$cache = array(); // and empty our internal (session) cache } else {