From af2ee6fe421192cd2b42fcb4bbd09179bbce3943 Mon Sep 17 00:00:00 2001 From: Arun Persaud Date: Mon, 26 May 2008 14:28:29 -0700 Subject: LAYOUT: more tables on the statistics page changed the last two tables to the new CSS-tables. Signed-off-by: Arun Persaud --- include/functions.php | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) (limited to 'include/functions.php') diff --git a/include/functions.php b/include/functions.php index 9f58f51..a338f38 100644 --- a/include/functions.php +++ b/include/functions.php @@ -934,6 +934,8 @@ function generate_score_table($session) function generate_global_score_table() { + $return = array(); + /* get all ids */ $gameids = DB_get_gameids_of_finished_games_by_session(0); @@ -967,7 +969,6 @@ function generate_global_score_table() } } - echo "\n \n"; function cmp($a,$b) { if($a['nr']==0 ) return 1; @@ -981,14 +982,15 @@ function generate_global_score_table() return ($a > $b) ? -1 : 1; } usort($player,"cmp"); + foreach($player as $pl) { + /* limit to players with at least 10 games */ if($pl['nr']>10) - echo " \n"; + $return[] = array( $pl['name'], round($pl['points']/$pl['nr'],3) ); } - echo "
",$pl['name'],"",round($pl['points']/$pl['nr'],3),"
\n"; - return; + return $return; } -- cgit v1.2.3-18-g5258