diff options
author | Frank Karlitschek <frank@owncloud.org> | 2012-06-01 14:21:24 +0200 |
---|---|---|
committer | Frank Karlitschek <frank@owncloud.org> | 2012-06-01 14:21:24 +0200 |
commit | aa88ec81c792830d91771512d719dfc5f1a2893e (patch) | |
tree | a5ef59e82480a89aef0c0d05d99a9f64efc4401a /lib/user.php | |
parent | 86279bc192d72318540e312e637f9ecceb339a77 (diff) | |
download | nextcloud-server-aa88ec81c792830d91771512d719dfc5f1a2893e.tar.gz nextcloud-server-aa88ec81c792830d91771512d719dfc5f1a2893e.zip |
sort users and groups. fixes oc-779
Diffstat (limited to 'lib/user.php')
-rw-r--r-- | lib/user.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/user.php b/lib/user.php index 056d1307543..a62b0f96838 100644 --- a/lib/user.php +++ b/lib/user.php @@ -336,6 +336,7 @@ class OC_User { } } } + asort($users); return $users; } |