mirror of
https://github.com/nextcloud/server.git
synced 2026-06-08 16:26:59 -04:00
Update group.php
Here is fox for my LDAP users OW 7.0.2
This commit is contained in:
parent
baffe5353f
commit
9f0b99cd17
1 changed files with 2 additions and 1 deletions
|
|
@ -282,7 +282,8 @@ class OC_Group {
|
|||
$displayNames
|
||||
);
|
||||
if ($diff) {
|
||||
$displayNames = array_merge($diff, $displayNames);
|
||||
// A fix for LDAP users. array_merge loses keys...
|
||||
$displayNames = $diff + $displayNames;
|
||||
}
|
||||
}
|
||||
return $displayNames;
|
||||
|
|
|
|||
Loading…
Reference in a new issue