Browse Source

LDAP: fix display of numerical display names

tags/v6.0.0alpha2
Arthur Schiwon 11 years ago
parent
commit
d69579f773
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      apps/user_ldap/user_proxy.php

+ 1
- 1
apps/user_ldap/user_proxy.php View File

@@ -174,7 +174,7 @@ class User_Proxy extends lib\Proxy implements \OCP\UserInterface {
foreach($this->backends as $backend) {
$backendUsers = $backend->getDisplayNames($search, $limit, $offset);
if (is_array($backendUsers)) {
$users = array_merge($users, $backendUsers);
$users = $users + $backendUsers;
}
}
return $users;

Loading…
Cancel
Save