aboutsummaryrefslogtreecommitdiffstats
path: root/admin/group_list.php
diff options
context:
space:
mode:
authorrub <rub@piwigo.org>2007-04-19 05:57:41 +0000
committerrub <rub@piwigo.org>2007-04-19 05:57:41 +0000
commit26243e16133a38e776578dc5887a72338cae0fa0 (patch)
tree83d40183442a5679b6758877705295a52dd76175 /admin/group_list.php
parent0d23430059d55e164e2902099333b9256fb441b3 (diff)
Small improvement: order group by name
git-svn-id: http://piwigo.org/svn/trunk@1960 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'admin/group_list.php')
-rw-r--r--admin/group_list.php2
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);