Ok, this mod is great... loved it... anyways, for those who would like to have their rules listed by date, (oldest first instead of newest rules first) change the following around line 55 of rules.php:
Code:
$rules = $DB_site->query("SELECT * FROM " . TABLE_PREFIX . "rules ORDER BY ruleid DESC");
to
Code:
$rules = $DB_site->query("SELECT * FROM " . TABLE_PREFIX . "rules ORDER BY ruleid ASC");