From a86a3d72c6387748773cf0596db27381f98a79a3 Mon Sep 17 00:00:00 2001 From: Nathan Gray Date: Fri, 21 Sep 2012 14:36:02 +0000 Subject: [PATCH] Fix fatal error deleting user (LDAP) --- phpgwapi/inc/class.accounts.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phpgwapi/inc/class.accounts.inc.php b/phpgwapi/inc/class.accounts.inc.php index b17b90db7c..439a0cf212 100644 --- a/phpgwapi/inc/class.accounts.inc.php +++ b/phpgwapi/inc/class.accounts.inc.php @@ -535,7 +535,7 @@ class accounts $GLOBALS['egw']->acl->delete_account($id); // delete all categories belonging to that user or group - $GLOBALS['egw']->cats->delete_account($id); + categories::delete_account($id); return true; }