remove dubug value

This commit is contained in:
Björn Schießle 2013-01-29 21:01:59 +01:00
parent 79c309da83
commit ebc3d1b2d7

View file

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