Skip to content

Commit

Permalink
bug #39031 [Ldap] Fix pagination (jderusse)
Browse files Browse the repository at this point in the history
This PR was merged into the 4.4 branch.

Discussion
----------

[Ldap] Fix pagination

| Q             | A
| ------------- | ---
| Branch?       | 4.4
| Bug fix?      | yes
| New feature?  | no
| Deprecations? | no
| Tickets       | #38874
| License       | MIT
| Doc PR        | N/A

This replaces #38875 to fix a bug introduced by #38392

Commits
-------

4fe0a6f Fix LDAP pagination
  • Loading branch information
fabpot committed Nov 9, 2020
2 parents 0d10f6b + 4fe0a6f commit 46410f8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Symfony/Component/Ldap/Adapter/ExtLdap/Query.php
Expand Up @@ -174,7 +174,7 @@ public function getResources(): array
private function resetPagination()
{
$con = $this->connection->getResource();
$this->controlPagedResultResponse($con, 0, '');
$this->controlPagedResult($con, 0, '');
$this->serverctrls = [];

// This is a workaround for a bit of a bug in the above invocation
Expand Down

0 comments on commit 46410f8

Please sign in to comment.