From 5abed91d19058387ffa2c3667b89eff16a5720e6 Mon Sep 17 00:00:00 2001 From: Arun Persaud Date: Thu, 29 May 2008 22:33:18 -0700 Subject: [PATCH] BUGFIX: some text was outside a div. also fixed a html issue. moved the text back inside the div and also changed a & into a & Signed-off-by: Arun Persaud --- include/functions.php | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/include/functions.php b/include/functions.php index a338f38..eba8bfa 100644 --- a/include/functions.php +++ b/include/functions.php @@ -854,17 +854,18 @@ function display_user_menu() " AND Game.player='$myid'". " AND Game.status<>'gameover'". " ORDER BY Game.session" ); - if(DB_num_rows($result)) - echo "It's your turn in these games:
\n"; $i=0; while( $r = DB_fetch_array($result)) { if($i==0) - echo "
\n"; - + { + echo "
\n"; + echo "It's your turn in these games:
\n"; + } + $i++; - echo "game ".DB_format_gameid($r[1])."
\n"; + echo "game ".DB_format_gameid($r[1])."
\n"; if($i>4) { echo "...
\n"; -- 2.25.1