mirror of
https://github.com/nextcloud/server.git
synced 2026-04-22 23:03:00 -04:00
case insensitive sort
This commit is contained in:
parent
a201a66878
commit
258ccdfabe
1 changed files with 1 additions and 1 deletions
|
|
@ -784,7 +784,7 @@ class OC_App{
|
|||
}
|
||||
|
||||
// prio 4: alphabetical
|
||||
return strcmp($a['name'], $b['name']);
|
||||
return strcasecmp($a['name'], $b['name']);
|
||||
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue