summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lib/user/backend.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/user/backend.php b/lib/user/backend.php
index efea622e312..56fa3195978 100644
--- a/lib/user/backend.php
+++ b/lib/user/backend.php
@@ -144,7 +144,7 @@ abstract class OC_User_Backend implements OC_User_Interface {
$displayNames = array();
$users = $this->getUsers($search, $limit, $offset);
foreach ( $users as $user) {
- $displayNames[$user] = "foo";
+ $displayNames[$user] = $user;
}
return $displayNames;
}