LDAP: fix display of numerical display names

remotes/origin/stable6
Arthur Schiwon 13 years ago
parent 796ee8c4c0
commit d69579f773
  1. 2
      apps/user_ldap/user_proxy.php

@ -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