Fix infinite loop if count and limit is 0

* otherwise it will always think it hits the limit and need another round to fetch additional results
remotes/origin/fix-10825
Morris Jobke 11 years ago
parent 9368de5a8b
commit 081787d6ae
  1. 2
      apps/user_ldap/lib/access.php

@ -928,7 +928,7 @@ class Access extends LDAPUtility implements user\IUserTools {
foreach($searchResults as $res) {
$count = intval($this->ldap->countEntries($cr, $res));
$counter += $count;
if($count === $limit) {
if($count > 0 && $count === $limit) {
$hasHitLimit = true;
}
}

Loading…
Cancel
Save