]> source.dussan.org Git - nextcloud-server.git/commitdiff
this must be larger then (>), since buggy behaviour occurs when the parameter is...
authorArthur Schiwon <blizzz@owncloud.com>
Tue, 20 Jan 2015 16:50:53 +0000 (17:50 +0100)
committerMorris Jobke <hey@morrisjobke.de>
Wed, 21 Jan 2015 13:38:47 +0000 (14:38 +0100)
apps/user_ldap/lib/access.php

index fef4cc57d4763e78db71e7332c1074a817503632..a79598d7ca740d6c64cc308b93496b119e36d332 100644 (file)
@@ -100,7 +100,7 @@ class Access extends LDAPUtility implements user\IUserTools {
                $pagingSize = intval($this->connection->ldapPagingSize);
                // 0 won't result in replies, small numbers may leave out groups
                // (cf. #12306), 500 is default for paging and should work everywhere.
-               $maxResults = $pagingSize < 20 ? $pagingSize : 500;
+               $maxResults = $pagingSize > 20 ? $pagingSize : 500;
                $this->initPagedSearch($filter, array($dn), array($attr), $maxResults, 0);
                $dn = $this->DNasBaseParameter($dn);
                $rr = @$this->ldap->read($cr, $dn, $filter, array($attr));