diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/functions.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/functions.php b/include/functions.php index 8307648..82b4bb6 100644 --- a/include/functions.php +++ b/include/functions.php @@ -851,7 +851,7 @@ function display_user_menu() $result = DB_query("SELECT Hand.hash,Hand.game_id,Game.player from Hand". " LEFT JOIN Game On Hand.game_id=Game.id". " WHERE Hand.user_id='$myid'". - " AND Game.player='$myid'". + " AND ( Game.player='$myid' OR ISNULL(Game.player) )". " AND Game.status<>'gameover'". " ORDER BY Game.session" ); |