diff options
author | root <leo@strike.wu.ac.at> | 2014-03-04 19:47:49 +0100 |
---|---|---|
committer | root <leo@strike.wu.ac.at> | 2014-03-04 19:47:49 +0100 |
commit | eb59e63c3b031b9a80a24865beb41a94eaa3b246 (patch) | |
tree | 3962445ff78ad7af880e4c5934b168d8997d4a93 /apps | |
parent | 039f7b054a0ffb8ceda5feeb2c522adb737e6a7c (diff) | |
download | nextcloud-server-eb59e63c3b031b9a80a24865beb41a94eaa3b246.tar.gz nextcloud-server-eb59e63c3b031b9a80a24865beb41a94eaa3b246.zip |
revert updateGroups job to use getGroups() instead of getAllGroups()
Diffstat (limited to 'apps')
-rw-r--r-- | apps/user_ldap/lib/jobs.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/user_ldap/lib/jobs.php b/apps/user_ldap/lib/jobs.php index 2e5c440fd6b..9b108da6331 100644 --- a/apps/user_ldap/lib/jobs.php +++ b/apps/user_ldap/lib/jobs.php @@ -41,7 +41,7 @@ class Jobs extends \OC\BackgroundJob\TimedJob { \OCP\Util::writeLog('user_ldap', 'Run background job "updateGroups"', \OCP\Util::DEBUG); $knownGroups = array_keys(self::getKnownGroups()); - $actualGroups = self::getGroupBE()->getAllGroups(); + $actualGroups = self::getGroupBE()->getGroups(); if(empty($actualGroups) && empty($knownGroups)) { \OCP\Util::writeLog('user_ldap', |