From: Arun Persaud Date: Thu, 25 Sep 2008 05:23:58 +0000 (-0700) Subject: LAYOUT: wrap some text for status of sickness better X-Git-Url: https://git.nubati.net/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ca3071da712685fd941f97d3610bad8635bf9c5c;p=e-DoKo.git LAYOUT: wrap some text for status of sickness better make "still needs to decide" two lines:wq Signed-off-by: Arun Persaud --- diff --git a/include/game.php b/include/game.php index 4c7710d..3c1b68e 100644 --- a/include/game.php +++ b/include/game.php @@ -297,7 +297,7 @@ switch($mystatus) $userstatus = DB_get_hand_status_by_userid_and_gameid($userid,$gameid); if($userstatus=='start' || $userstatus=='init') - echo "
still needs to decide
\n"; /* show this to everyone */ + echo "
still needs
to decide
\n"; /* show this to everyone */ else if($usersick!=NULL && $pos<=$mypos ) /* only show this for people sitting before the player */ echo "
sick
\n"; @@ -414,7 +414,7 @@ switch($mystatus) $userstatus = DB_get_hand_status_by_userid_and_gameid($userid,$gameid); if($userstatus=='start' || $userstatus=='init') - echo "
still needs to decide
\n"; /* show this to everyone */ + echo "
still needs
to decide
\n"; /* show this to everyone */ else if($usersick!=NULL) /* in the init-phase we only showed players with $pos<$mypos, now we can show all */ echo "
sick
\n";