diff options
author | Arun Persaud <arun@nubati.net> | 2007-11-27 19:12:39 +0100 |
---|---|---|
committer | Arun Persaud <arun@nubati.net> | 2007-11-27 19:12:39 +0100 |
commit | 014c31b6a22d4ab2f43eb58ed2acde02042c402b (patch) | |
tree | 8eb319a37d9e45ac2a627e63518e5eb0aec9ccbc | |
parent | 9732aef914603924915bde24684f322843ead085 (diff) | |
download | e-DoKo-014c31b6a22d4ab2f43eb58ed2acde02042c402b.tar.gz e-DoKo-014c31b6a22d4ab2f43eb58ed2acde02042c402b.tar.bz2 e-DoKo-014c31b6a22d4ab2f43eb58ed2acde02042c402b.zip |
BUGIX: games in a session were not ordered by date, but by id
when a game gets cancled new games use that game_id in the DB which can mess up the ordering of sessions. fixed now.
-rw-r--r-- | db.php | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -723,7 +723,8 @@ function DB_get_hashes_by_session($session,$user) $result = mysql_query("SELECT Hand.hash FROM Hand". " LEFT JOIN Game ON Game.id=Hand.game_id ". " WHERE Game.session=".DB_quote_smart($session). - " AND Hand.user_id=".DB_quote_smart($user)); + " AND Hand.user_id=".DB_quote_smart($user). + " ORDER BY Game.create_date ASC"); while($t = mysql_fetch_array($result,MYSQL_NUM)) $r[] = $t[0]; |