diff options
author | Paul S. Owen <psotfx@users.sourceforge.net> | 2003-01-21 14:40:04 +0000 |
---|---|---|
committer | Paul S. Owen <psotfx@users.sourceforge.net> | 2003-01-21 14:40:04 +0000 |
commit | 919e75c64fc6452b9dfd748c61f4eccda6057b7c (patch) | |
tree | 0e393d7aaacead52a73af72f8b1a288756246d2c /phpBB/includes/functions_admin.php | |
parent | fce3c5ef0be18cc4b1d5ded400448ee815c626fa (diff) | |
download | forums-919e75c64fc6452b9dfd748c61f4eccda6057b7c.tar forums-919e75c64fc6452b9dfd748c61f4eccda6057b7c.tar.gz forums-919e75c64fc6452b9dfd748c61f4eccda6057b7c.tar.bz2 forums-919e75c64fc6452b9dfd748c61f4eccda6057b7c.tar.xz forums-919e75c64fc6452b9dfd748c61f4eccda6057b7c.zip |
Wrong order by in acl_add_option
git-svn-id: file:///svn/phpbb/trunk@3343 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/functions_admin.php')
-rw-r--r-- | phpBB/includes/functions_admin.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/functions_admin.php b/phpBB/includes/functions_admin.php index fd0b53853b..71ae800171 100644 --- a/phpBB/includes/functions_admin.php +++ b/phpBB/includes/functions_admin.php @@ -706,7 +706,7 @@ class auth_admin extends auth $sql = "SELECT auth_value, is_global, is_local FROM " . ACL_OPTIONS_TABLE . " - ORDER BY is_global, is_local, auth_value"; + ORDER BY auth_option_id"; $result = $db->sql_query($sql); while ($row = $db->sql_fetchrow($result)) |