Skip to content

Commit

Permalink
bug 3187: sort albums by names without accents
Browse files Browse the repository at this point in the history
git-svn-id: http://piwigo.org/svn/trunk@30874 68402e56-0260-453c-a942-63ccdbb3a9ee
  • Loading branch information
plegall committed Jan 9, 2015
1 parent 639edaa commit f556185
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion admin/cat_list.php
Expand Up @@ -281,7 +281,7 @@ function get_categories_ref_date($ids, $field='date_available', $minmax='max')
}
else
{
$sort[] = $row['name'];
$sort[] = remove_accents($row['name']);
}

$categories[] = array(
Expand Down

0 comments on commit f556185

Please sign in to comment.