mirror of
https://github.com/nextcloud/server.git
synced 2026-05-28 04:32:30 -04:00
sort users and groups. fixes oc-779
This commit is contained in:
parent
86279bc192
commit
aa88ec81c7
2 changed files with 3 additions and 0 deletions
|
|
@ -233,6 +233,7 @@ class OC_Group {
|
|||
|
||||
$groups=array_merge($backend->getUserGroups($uid),$groups);
|
||||
}
|
||||
asort($groups);
|
||||
return $groups;
|
||||
}
|
||||
|
||||
|
|
@ -250,6 +251,7 @@ class OC_Group {
|
|||
|
||||
$groups=array_merge($backend->getGroups(),$groups);
|
||||
}
|
||||
asort($groups);
|
||||
return $groups;
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -336,6 +336,7 @@ class OC_User {
|
|||
}
|
||||
}
|
||||
}
|
||||
asort($users);
|
||||
return $users;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue