From: moodler Date: Tue, 31 Oct 2006 01:21:48 +0000 (+0000) Subject: Merge participant count from stable X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=23f5ee25aac15495959b3f78809016e2fbac7e23;p=moodle.git Merge participant count from stable --- 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); + } }