LDAP: fix wrong return value

remotes/origin/stable6
Arthur Schiwon 2013-03-20 13:17:40 +07:00 committed by Björn Schießle
parent abd48496d2
commit 8b3dd87846
1 changed files with 2 additions and 2 deletions

@ -140,7 +140,7 @@ class GROUP_LDAP extends lib\Access implements \OCP\GroupInterface {
return array();
}
if(!$this->groupExists($gid)) {
return false;
return array();
}
$cachekey = 'usersInGroup-'.$gid.'-'.$search.'-'.$limit.'-'.$offset;
// check for cache of the exact query
@ -221,7 +221,7 @@ class GROUP_LDAP extends lib\Access implements \OCP\GroupInterface {
return array();
}
if(!$this->groupExists($gid)) {
return false;
return array();
}
$users = $this->usersInGroup($gid, $search, $limit, $offset);
$displayNames = array();