Skip to content

Commit

Permalink
merge -r1223:1224 from branch 1.6 to trunk (bug 332 fixed)
Browse files Browse the repository at this point in the history
git-svn-id: http://piwigo.org/svn/trunk@1225 68402e56-0260-453c-a942-63ccdbb3a9ee
  • Loading branch information
plegall committed Apr 20, 2006
1 parent 7e13640 commit 03b6de5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion admin/cat_list.php
Expand Up @@ -126,7 +126,7 @@ function save_categories_order($categories)
$result = pwg_query($query);
while ($row = mysql_fetch_assoc($result))
{
$categories[ $row['id'] ] = $row['name'];
$categories[ $row['id'] ] = strtolower($row['name']);
}

asort($categories, SORT_REGULAR);
Expand Down

0 comments on commit 03b6de5

Please sign in to comment.