mirror of
https://github.com/nextcloud/server.git
synced 2026-05-26 03:04:35 -04:00
Merge pull request #41369 from nextcloud/backport/41333/stable26
[stable26] fix(LDAP): prevent incomplete displaynames…
This commit is contained in:
commit
d19dd1fd55
1 changed files with 2 additions and 2 deletions
|
|
@ -494,7 +494,7 @@ class Group_LDAP extends BackendUtility implements GroupInterface, IGroupLDAP, I
|
|||
$filter = $this->prepareFilterForUsersHasGidNumber($groupDN, $search);
|
||||
$users = $this->access->fetchListOfUsers(
|
||||
$filter,
|
||||
[$this->access->connection->ldapUserDisplayName, 'dn'],
|
||||
$this->access->userManager->getAttributes(true),
|
||||
$limit,
|
||||
$offset
|
||||
);
|
||||
|
|
@ -617,7 +617,7 @@ class Group_LDAP extends BackendUtility implements GroupInterface, IGroupLDAP, I
|
|||
$filter = $this->prepareFilterForUsersInPrimaryGroup($groupDN, $search);
|
||||
$users = $this->access->fetchListOfUsers(
|
||||
$filter,
|
||||
[$this->access->connection->ldapUserDisplayName, 'dn'],
|
||||
$this->access->userManager->getAttributes(true),
|
||||
$limit,
|
||||
$offset
|
||||
);
|
||||
|
|
|
|||
Loading…
Reference in a new issue