Skip to content

Commit

Permalink
Merge pull request #1588 (#1848)
Browse files Browse the repository at this point in the history
* [FIX] Fixes issue with LDAP pagination

Co-authored-by: Felix Haase <felix.haase@feki.de>
  • Loading branch information
nuxsmin and sargreal committed Jun 25, 2022
1 parent c896d7f commit 244fa44
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/SP/Providers/Auth/Ldap/LdapActions.php
Expand Up @@ -203,7 +203,7 @@ protected function getResults($filter, array $attributes = null, $searchBase = n
$searchRes,
$cookie
);
} while ($cookie !== null && $cookie != '');
} while (!empty($cookie) && $entries["count"] > 0);

return $results;
}
Expand Down

0 comments on commit 244fa44

Please sign in to comment.