From 92d9bfa8b94111e0684029cf1237cbc9b64728ac Mon Sep 17 00:00:00 2001 From: Arun Persaud Date: Sun, 9 Dec 2012 12:09:35 -0800 Subject: BUGFIX: highlight of prev/next trick didn't work all the time used a string where I should have used an integer --- include/game.php | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'include/game.php') diff --git a/include/game.php b/include/game.php index d07ff5b..ae7d6f7 100644 --- a/include/game.php +++ b/include/game.php @@ -367,7 +367,7 @@ switch($mystatus) case 'check': /* output sickness of other playes, in case they already selected and are sitting in front of the current player */ echo "\n\n"; /* end div trick, end li trick , end tricks*/ /* end displaying sickness */ @@ -381,7 +381,7 @@ switch($mystatus) $mygametype = DB_get_gametype_by_gameid($gameid); - echo "
  • Pre\n"; + echo "
  • Pre\n"; echo "
  • \n\n\n"; /* end div trick, end li trick , end ul tricks */ } /* end output pre-game trick */ @@ -396,7 +396,7 @@ switch($mystatus) $mygamesolo = DB_get_solo_by_gameid($gameid); if($mygametype != 'normal') /* only show when needed */ if(!( $mygametype == 'solo' && $mygamesolo == 'silent') ) - echo "
  • Pre
  • \n"; + echo "
  • Pre
  • \n"; $result = DB_query('SELECT Trick.id '. 'FROM Trick '. @@ -411,19 +411,19 @@ switch($mystatus) { $trick=$r[0]; if($trick!=$lasttrick) - echo "
  • "._('Trick')." $trickNR
  • \n"; + echo "
  • $trickNR
  • \n"; else if($trick==$lasttrick) - echo "
  • "._('Trick')." $trickNR
  • \n"; + echo "
  • $trickNR
  • \n"; $trickNR++; } /* if game is over, also output link to Score tab */ if($mystatus=='gameover' && DB_get_game_status_by_gameid($gameid)=='gameover' ) - echo "
  • "._('Score')."
  • \n"; + echo "
  • "._('Score')."
  • \n"; /* output previous/next buttons */ - echo '
  • '._('prev')."
  • \n"; - echo '
  • '._('next')."
  • \n"; + echo '
  • '._('prev')."
  • \n"; + echo '
  • '._('next')."
  • \n"; echo "\n\n"; -- cgit v1.2.3-18-g5258