Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClement Wong <git@clement.hk>2020-04-27 03:28:47 +0300
committerClement Wong <git@clement.hk>2020-04-27 03:33:00 +0300
commit9f5f505acfca368bea88cdcba551570cc0315567 (patch)
tree5db0d89214f38da38ab4930482e14d2f708356f7 /apps/user_ldap
parent0eeb6606796260bc3e0da3f2e6deb3a7cc522c3c (diff)
Don't remove last user in ldap group when limit is -1
Signed-off-by: Clement Wong <git@clement.hk>
Diffstat (limited to 'apps/user_ldap')
-rw-r--r--apps/user_ldap/lib/Group_LDAP.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/user_ldap/lib/Group_LDAP.php b/apps/user_ldap/lib/Group_LDAP.php
index f05c8fb8ca4..b7d1b0d62b8 100644
--- a/apps/user_ldap/lib/Group_LDAP.php
+++ b/apps/user_ldap/lib/Group_LDAP.php
@@ -842,6 +842,9 @@ class Group_LDAP extends BackendUtility implements \OCP\GroupInterface, IGroupLD
return $groupUsers;
}
+ if ($limit === -1) {
+ $limit = null;
+ }
// check for cache of the query without limit and offset
$groupUsers = $this->access->connection->getFromCache('usersInGroup-' . $gid . '-' . $search);
if (!is_null($groupUsers)) {
@@ -850,9 +853,6 @@ class Group_LDAP extends BackendUtility implements \OCP\GroupInterface, IGroupLD
return $groupUsers;
}
- if ($limit === -1) {
- $limit = null;
- }
$groupDN = $this->access->groupname2dn($gid);
if (!$groupDN) {
// group couldn't be found, return empty resultset