mirror of
https://github.com/Piwigo/Piwigo.git
synced 2026-08-07 17:23:04 +02:00
bug 367 fixed: tags are sorted in logic order (case insensitive)
git-svn-id: http://piwigo.org/svn/branches/branch-1_6@1309 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
@@ -563,7 +563,7 @@ function get_html_tag_selection(
|
||||
|
||||
function name_compare($a, $b)
|
||||
{
|
||||
return strcmp($a['name'], $b['name']);
|
||||
return strcmp(strtolower($a['name']), strtolower($b['name']));
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user