From 1d9a3b50e47bd9492752f809554b31297dfe1302 Mon Sep 17 00:00:00 2001
From: Robert Anderson <randerson@lbsd.net>
Date: Thu, 19 Mar 2009 13:58:48 +0000
Subject: [PATCH] Changed order of list

---
 webui/policy-main.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/webui/policy-main.php b/webui/policy-main.php
index dc9132c1..5f98ebdf 100644
--- a/webui/policy-main.php
+++ b/webui/policy-main.php
@@ -74,7 +74,7 @@ if (!isset($_POST['frmaction']))
 				<td class="textcenter">Disabled</td>
 			</tr>
 <?php
-			$sql = "SELECT ID, Username, Disabled FROM ${DB_TABLE_PREFIX}users ORDER BY Username ASC";
+			$sql = "SELECT ID, Username, Disabled FROM ${DB_TABLE_PREFIX}users ORDER BY ID ASC";
 			$res = $db->query($sql);
 
 			while ($row = $res->fetchObject()) {
-- 
GitLab