diff options
author | plegall <plg@piwigo.org> | 2006-04-20 21:39:12 +0000 |
---|---|---|
committer | plegall <plg@piwigo.org> | 2006-04-20 21:39:12 +0000 |
commit | 03b6de55d8d56e13433bf4bca6c0d2270904cc54 (patch) | |
tree | fd1dffb84e602b72badef3b7a3f039dc05b83a0d /admin/cat_list.php | |
parent | 7e13640ad12c0b7be2fa3fbcf68f7a7441cb999c (diff) |
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
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 2c659ee3f..4c266c01f 100644 --- a/admin/cat_list.php +++ b/admin/cat_list.php @@ -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); |