merge -r1223:1224 from branch 1.6 to trunk (bug 332 fixed)

git-svn-id: http://piwigo.org/svn/trunk@1225 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
plegall
2006-04-20 21:39:12 +00:00
parent 7e13640ad1
commit 03b6de55d8
+1 -1
View File
@@ -126,7 +126,7 @@ SELECT id, name
$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);