From 23f5ee25aac15495959b3f78809016e2fbac7e23 Mon Sep 17 00:00:00 2001 From: moodler Date: Tue, 31 Oct 2006 01:21:48 +0000 Subject: [PATCH] Merge participant count from stable --- user/index.php | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/user/index.php b/user/index.php index ca064cc623..654bbb406a 100644 --- a/user/index.php +++ b/user/index.php @@ -405,7 +405,11 @@ } print_heading($heading, 'center', 3); } else { - print_heading(get_string('allparticipants'), 'center', 3); + if ($matchcount < $totalcount) { + print_heading(get_string('allparticipants').': '.$matchcount.'/'.$totalcount, 'center', 3); + } else { + print_heading(get_string('allparticipants').': '.$matchcount, 'center', 3); + } } -- 2.39.5