From 919e75c64fc6452b9dfd748c61f4eccda6057b7c Mon Sep 17 00:00:00 2001
From: "Paul S. Owen" <psotfx@users.sourceforge.net>
Date: Tue, 21 Jan 2003 14:40:04 +0000
Subject: [PATCH] Wrong order by in acl_add_option

git-svn-id: file:///svn/phpbb/trunk@3343 89ea8834-ac86-4346-8a33-228a782c2dd0
---
 phpBB/includes/functions_admin.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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))