From: Arun Persaud Date: Fri, 30 May 2008 05:33:18 +0000 (-0700) Subject: BUGFIX: some text was outside a div. also fixed a html issue. X-Git-Url: https://git.nubati.net/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5abed91d19058387ffa2c3667b89eff16a5720e6;p=e-DoKo.git 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 --- 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";