From: Arun Persaud Date: Fri, 14 Dec 2007 10:41:47 +0000 (+0100) Subject: BUGIFX: sort game list by session in user menu X-Git-Url: https://git.nubati.net/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=05a61952fc743ea388c10eff29e50adabf4593aa;p=e-DoKo.git 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 --- 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";