Installed first time

And well done Erwin, as usual comes to the rescue :nervous:
Now all I have to do is find out how to upload the new games.
Laters
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. 
|