As is becoming standard...I have fixed my own problem
My list has Rule 1:, Rule 2:, etc. So I wanted the drop down to reflect this.
Simply go into warn.php
Find:
PHP Code:
// New Prevent Warning Usergroup Function
$all_warns = $DB_site->query("
SELECT name, points
FROM warnings
ORDER BY points
DESC");
Replace With:
PHP Code:
// New Prevent Warning Usergroup Function
$all_warns = $DB_site->query("
SELECT name, points
FROM warnings
ORDER BY name
ASC");
Now, my list is sorted by name in an ascending order!
Easy Enuf