Skip to content
Snippets Groups Projects
Commit 1d9a3b50 authored by Robert Anderson's avatar Robert Anderson
Browse files

Changed order of list

parent a97f15c6
No related branches found
No related tags found
No related merge requests found
......@@ -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()) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment