From 1a44bc0d058016a093a112f064bac63a570c400d Mon Sep 17 00:00:00 2001 From: Arun Persaud <arun@nubati.net> Date: Sun, 21 Jun 2009 20:48:29 -0700 Subject: some more comments looked into issue#51 (everything was correct) and added some comments. --- include/game.php | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) (limited to 'include/game.php') diff --git a/include/game.php b/include/game.php index 5c367e9..f612b20 100644 --- a/include/game.php +++ b/include/game.php @@ -210,16 +210,19 @@ if($session) echo " </div>\n </div>\n"; /* show score */ + + echo " <div class=\"sessionscore\">"; + $score = generate_score_table($session); + + /* get the last entry to show on the main page */ $tmpscore= $score; $finalscore = array_pop($tmpscore); $finalscore = $finalscore['players']; - echo " <div class=\"sessionscore\">"; if($finalscore) { echo "Score: \n"; - /* output the final score on the front page */ foreach($finalscore as $user=>$value) { $name = DB_get_name('userid',$user); @@ -232,10 +235,13 @@ if($session) echo " "; } + /* output all games for the score table */ echo format_score_table_html($score,$myid); echo " </div>\n"; - /* figure out which game in a session we are in and link to the previous and next game if possible */ + /* figure out which game in a session we are in and link to the + * previous and next game if possible + */ $hashes = DB_get_hashes_by_session($session,$myid); $next = NULL; $i = 1; -- cgit v1.2.3-18-g5258