Skip to content
Snippets Groups Projects
Commit ad6562d1 authored by Frank Karlitschek's avatar Frank Karlitschek
Browse files

sort users and groups. fixes oc-779

parent a4f177d7
No related branches found
No related tags found
No related merge requests found
......@@ -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;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment