1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-04-07 17:33:32 +02:00

[ticket/11150] Case insentitive sort

PHPBB3-11150
This commit is contained in:
Tristan Darricau 2015-12-11 20:12:25 +01:00 committed by Tristan Darricau
parent b5136e4976
commit 6571067719
No known key found for this signature in database
GPG Key ID: 817043C2E29DB881

View File

@ -399,7 +399,7 @@ class installer
usort($available, function($a, $b)
{
return strcmp($a['display_name'], $b['display_name']);
return strcasecmp($a['display_name'], $b['display_name']);
});
return $available;