From 05a61952fc743ea388c10eff29e50adabf4593aa Mon Sep 17 00:00:00 2001 From: Arun Persaud Date: Fri, 14 Dec 2007 11:41:47 +0100 Subject: [PATCH] BUGIFX: sort game list by session in user menu if it is your turn those games are shown in the user menu, but where not sorted by sessions. fixed now --- functions.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/functions.php b/functions.php index a9ea34b..16ca508 100644 --- a/functions.php +++ b/functions.php @@ -812,7 +812,8 @@ function display_user_menu() " LEFT JOIN Game On Hand.game_id=Game.id". " WHERE Hand.user_id='$myid'". " AND Game.player='$myid'". - " AND Game.status<>'gameover'" ); + " AND Game.status<>'gameover'". + " ORDER BY Game.session" ); if(mysql_num_rows($result)) echo "
It's your turn in these games:
\n"; -- 2.34.1