diff options
author | rub <rub@piwigo.org> | 2007-04-19 06:04:04 +0000 |
---|---|---|
committer | rub <rub@piwigo.org> | 2007-04-19 06:04:04 +0000 |
commit | 25ed7b89d368001006caa1c2bdc12c811d589b46 (patch) | |
tree | 6908ef869d99fa5f360a8b74f462509a87c8fc2c /admin/group_list.php | |
parent | 8a97ff299e36b1b9a8b555ca91c6e040abd58010 (diff) |
Small improvement: order group by name
Change cat_*.php header
Merge BSF 1959:1961 into branch-1_7
git-svn-id: http://piwigo.org/svn/branches/branch-1_7@1962 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'admin/group_list.php')
-rw-r--r-- | admin/group_list.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/admin/group_list.php b/admin/group_list.php index ccb5a5b80..c5bd7ac70 100644 --- a/admin/group_list.php +++ b/admin/group_list.php @@ -168,7 +168,7 @@ $template->assign_vars( $query = ' SELECT id, name, is_default FROM '.GROUPS_TABLE.' - ORDER BY id ASC + ORDER BY name ASC ;'; $result = pwg_query($query); |