diff options
author | root <leo@strike.wu.ac.at> | 2013-12-11 11:00:53 +0100 |
---|---|---|
committer | Alexander Bergolth <leo@strike.wu.ac.at> | 2014-03-06 12:07:03 +0100 |
commit | 6585bd5a500292a284490e96250d465280f3c34b (patch) | |
tree | f76ac614bf500457d44d10c41e71fe00597cfa53 /apps/user_ldap/lib | |
parent | 8fcc29ee8b7b5ed600c8ec7116f52486718467f6 (diff) | |
download | nextcloud-server-6585bd5a500292a284490e96250d465280f3c34b.tar.gz nextcloud-server-6585bd5a500292a284490e96250d465280f3c34b.zip |
"reset" ldap pagedSearch control by setting it to a high value
call nextEntry via invokeLDAPMethod
Diffstat (limited to 'apps/user_ldap/lib')
-rw-r--r-- | apps/user_ldap/lib/ldap.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/user_ldap/lib/ldap.php b/apps/user_ldap/lib/ldap.php index 0e5f78cd28c..d1ca91045b2 100644 --- a/apps/user_ldap/lib/ldap.php +++ b/apps/user_ldap/lib/ldap.php @@ -78,7 +78,7 @@ class LDAP implements ILDAPWrapper { } public function nextEntry($link, $result) { - return ldap_next_entry($link, $result); + return $this->invokeLDAPMethod('next_entry', $link, $result); } public function read($link, $baseDN, $filter, $attr) { |