summaryrefslogtreecommitdiffstats
path: root/settings
diff options
context:
space:
mode:
authorThomas Mueller <thomas.mueller@tmit.eu>2013-04-08 23:11:33 +0200
committerThomas Mueller <thomas.mueller@tmit.eu>2013-04-09 15:23:35 +0200
commit9159d556390a4c408b8c2dc03f5ea778e8c1b145 (patch)
tree6b4491b8698cd931690080297aa36b95e3c58adc /settings
parent06ab314c15f33c9c430be3da8c6ee822bb18a973 (diff)
downloadnextcloud-server-9159d556390a4c408b8c2dc03f5ea778e8c1b145.tar.gz
nextcloud-server-9159d556390a4c408b8c2dc03f5ea778e8c1b145.zip
fixes #2743 - use public OC_User::getDisplayName instead of OC_User::determineDisplayName
Diffstat (limited to 'settings')
-rw-r--r--settings/ajax/userlist.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/settings/ajax/userlist.php b/settings/ajax/userlist.php
index 5282f4a7143..87b42395749 100644
--- a/settings/ajax/userlist.php
+++ b/settings/ajax/userlist.php
@@ -44,7 +44,7 @@ if (OC_User::isAdminUser(OC_User::getUser())) {
foreach ($batch as $user) {
$users[] = array(
'name' => $user,
- 'displayname' => OC_User::determineDisplayName($user),
+ 'displayname' => OC_User::getDisplayName($user),
'groups' => join(', ', OC_Group::getUserGroups($user)),
'quota' => OC_Preferences::getValue($user, 'files', 'quota', 'default'));
}