do not run paged results against ldap_read ops on PHP7.3+

- previously it was needed as the PHP LDAP handling of paged results was
strange
- but now the read operation would fail, e.g. with extra home dir attribute
set ("Home dir attribute can't be read from LDAP for uid: foobar"

Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
This commit is contained in:
Arthur Schiwon 2020-04-17 14:56:53 +02:00
parent 613f0f2c0c
commit 75c686d825
No known key found for this signature in database
GPG Key ID: 7424F1874854DF23
1 changed files with 0 additions and 1 deletions

View File

@ -135,7 +135,6 @@ class Php73 implements IAdapter {
$this->linkData[$linkId]['readArgs'] = func_get_args();
$this->linkData[$linkId]['readArgs'][] = 0; // $attrsonly default
$this->linkData[$linkId]['readArgs'][] = -1; // $sizelimit default
$this->preparePagesResultsArgs($linkId, 'readArgs');
}
public function getReadArgs($link): array {