From 8b3dd8784696445c8554de2d07f1ddcbcd86b8d6 Mon Sep 17 00:00:00 2001 From: Arthur Schiwon Date: Wed, 20 Mar 2013 13:17:40 +0100 Subject: [PATCH] LDAP: fix wrong return value --- apps/user_ldap/group_ldap.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/user_ldap/group_ldap.php b/apps/user_ldap/group_ldap.php index 3dbc5e7d895..ca5b3a35e5a 100644 --- a/apps/user_ldap/group_ldap.php +++ b/apps/user_ldap/group_ldap.php @@ -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(); -- 2.39.5