From 3fd01c7b9fa78fb08ca1ad61c1de850b9a6b9870 Mon Sep 17 00:00:00 2001 From: Arun Persaud Date: Wed, 25 Feb 2009 23:32:18 -0800 Subject: [PATCH] LAYOUT: some messages were not wrapped in a div-tag and therefore had no class set, so they showed up somewhere on the page and messed up the layout --- include/game.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/include/game.php b/include/game.php index b3f852d..6d47fc9 100644 --- a/include/game.php +++ b/include/game.php @@ -746,7 +746,7 @@ switch($mystatus) } } else - echo " Please, start the game.
\n"; + echo "
Please, start the game.
\n"; } else { @@ -756,7 +756,7 @@ switch($mystatus) $whoid = DB_get_userid('gameid-position',$gameid,$who); if($whoid==$myid) - echo " Please, start the game.
\n"; + echo "
Please, start the game.
\n"; else { $whohash = DB_get_hash_from_game_and_pos($gameid,$who); @@ -871,7 +871,7 @@ switch($mystatus) } } else - echo " Please, start the game.
\n"; + echo "
Please, start the game.
\n"; } /* the following is part A) of what needs to be done */ @@ -1063,7 +1063,7 @@ switch($mystatus) mymail($userid,$subject,$message); } } - echo "
Please, continue here.
\n"; + echo "
Please, continue here.
\n"; } } echo ""; -- 2.25.1