mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-31 05:50:42 +02:00
[ticket/11150] Case insentitive sort
PHPBB3-11150
This commit is contained in:
committed by
Tristan Darricau
parent
b5136e4976
commit
6571067719
@@ -399,7 +399,7 @@ class installer
|
|||||||
|
|
||||||
usort($available, function($a, $b)
|
usort($available, function($a, $b)
|
||||||
{
|
{
|
||||||
return strcmp($a['display_name'], $b['display_name']);
|
return strcasecmp($a['display_name'], $b['display_name']);
|
||||||
});
|
});
|
||||||
|
|
||||||
return $available;
|
return $available;
|
||||||
|
Reference in New Issue
Block a user