diff options
author | Arthur Schiwon <blizzz@owncloud.com> | 2013-02-26 22:56:55 +0100 |
---|---|---|
committer | Arthur Schiwon <blizzz@owncloud.com> | 2013-02-26 22:56:55 +0100 |
commit | 60d4fdda5780ea115ae4d051165256ce7de69783 (patch) | |
tree | 7d42dc147e6d09115d9952e76af02ce1fec860aa /lib/user.php | |
parent | 64551ee06f2d33979c525a36455337aaca646d16 (diff) | |
download | nextcloud-server-60d4fdda5780ea115ae4d051165256ce7de69783.tar.gz nextcloud-server-60d4fdda5780ea115ae4d051165256ce7de69783.zip |
sort users according to display name
Diffstat (limited to 'lib/user.php')
-rw-r--r-- | lib/user.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/user.php b/lib/user.php index 16f6d2787cb..cf6276f782b 100644 --- a/lib/user.php +++ b/lib/user.php @@ -530,7 +530,7 @@ class OC_User { $displayNames = array_merge($displayNames, $backendDisplayNames); } } - ksort($displayNames); + asort($displayNames); return $displayNames; } |