better sorting

This commit is contained in:
Roland Gruber 2011-12-10 09:29:38 +00:00
parent a6b51fd66d
commit d3e2e90c84
1 changed files with 3 additions and 0 deletions

View File

@ -148,6 +148,9 @@ function getSelfServiceProfiles() {
}
}
ksort($ret);
foreach ($ret as $key => $value) {
sort($ret[$key]);
}
return $ret;
}