diff options
author | plegall <plg@piwigo.org> | 2015-01-09 14:14:45 +0000 |
---|---|---|
committer | plegall <plg@piwigo.org> | 2015-01-09 14:14:45 +0000 |
commit | f5561856a2c16b4631de2a274f114a98f64be910 (patch) | |
tree | cba74cd23b61b5082dfbe9180f4bd2e94749b7a4 /admin/cat_list.php | |
parent | 639edaa04b6082ea6e46644022ed9898292cf43b (diff) |
bug 3187: sort albums by names without accents
git-svn-id: http://piwigo.org/svn/trunk@30874 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'admin/cat_list.php')
-rw-r--r-- | admin/cat_list.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/admin/cat_list.php b/admin/cat_list.php index 54cb44595..d69bb4957 100644 --- a/admin/cat_list.php +++ b/admin/cat_list.php @@ -281,7 +281,7 @@ SELECT id, name, id_uppercat } else { - $sort[] = $row['name']; + $sort[] = remove_accents($row['name']); } $categories[] = array( |