Quote:
Originally Posted by Erwin
For version 1.02 - if you want to make the games show up in ALPHABETICAL order rather than install order, do this:
Open arcade.php,
Find:
PHP Code:
// Selects all games from the database
$result_allgames = $DB_site->query("
SELECT * FROM " . TABLE_PREFIX . "games $searchclause ORDER BY gameid DESC
");
Replace with:
PHP Code:
// Selects all games from the database
$result_allgames = $DB_site->query("
SELECT * FROM " . TABLE_PREFIX . "games $searchclause ORDER BY shortname ASC
");
That should make things a bit more logical, if you ask me. 
|
John, is there a way to maybe add an option for this for those of us that want to sort the games alphabetically instead of how the games are added?