diff options
author | plegall <plg@piwigo.org> | 2006-05-15 21:21:11 +0000 |
---|---|---|
committer | plegall <plg@piwigo.org> | 2006-05-15 21:21:11 +0000 |
commit | 2b4be7da20d5c022768e721352fa211e66a2c1f6 (patch) | |
tree | 4b53f9587969215e2ca1cf1f9cc755ad1160fd96 /include/functions_html.inc.php | |
parent | b593bf2fc485b04d6cc83a60e4111c243e3fbf3a (diff) |
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
Diffstat (limited to 'include/functions_html.inc.php')
-rw-r--r-- | include/functions_html.inc.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/functions_html.inc.php b/include/functions_html.inc.php index 7db40add4..993c46dea 100644 --- a/include/functions_html.inc.php +++ b/include/functions_html.inc.php @@ -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'])); } /** |