diff options
author | Arun Persaud <arun@nubati.net> | 2008-05-29 19:46:51 -0700 |
---|---|---|
committer | Arun Persaud <arun@nubati.net> | 2008-05-29 19:46:51 -0700 |
commit | be7fad04dae48d5fa0c209b84be3e9cf9b763472 (patch) | |
tree | 3c4d766ecaf90aa5aa17f0d938c8dba36735f72f /include/game.php | |
parent | 932a309e7db3043fd22bd497a1f50b0ba09d112f (diff) | |
download | e-DoKo-be7fad04dae48d5fa0c209b84be3e9cf9b763472.tar.gz e-DoKo-be7fad04dae48d5fa0c209b84be3e9cf9b763472.tar.bz2 e-DoKo-be7fad04dae48d5fa0c209b84be3e9cf9b763472.zip |
BUGFIX: forgot to close a <li> and a <div> on the first trick played
messed up the html a bit, just a minor fix though
Signed-off-by: Arun Persaud <arun@nubati.net>
Diffstat (limited to 'include/game.php')
-rw-r--r-- | include/game.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/game.php b/include/game.php index fbf554f..ceed8bb 100644 --- a/include/game.php +++ b/include/game.php @@ -1708,7 +1708,7 @@ switch($mystatus) echo "please wait until it's your turn! <br />\n"; } - if($seq!=4 && $trickNR>1) + if($seq!=4 && $trickNR>=1) echo " </div>\n </li>\n"; /* end div trick, end li trick */ /* display points in case game is over */ |