diff --git a/html/user/team.inc b/html/user/team.inc
index 4ae16016b9..4a2f85be09 100644
--- a/html/user/team.inc
+++ b/html/user/team.inc
@@ -125,13 +125,14 @@ function team_table_start() {
}
function show_team_row($team, $i) {
- echo "
- $i) id>$team->name |
- $team->nusers |
- $team->expavg_credit |
- $team->total_credit |
- $team->country |
-
\n";
+ printf( "
+ %d) %s |
+ %d |
+ %.4f |
+ %.4f |
+ %s |
+
\n", $i, $team->id, $team->name, $team->nusers, $team->expavg_credit,
+ $team->total_credit, $team->country );
}
function team_edit_form($team, $label, $url) {