From e1d1049893f3ba1d68c041dbb63c4972b9032665 Mon Sep 17 00:00:00 2001 From: moodler Date: Tue, 23 Sep 2003 03:11:36 +0000 Subject: [PATCH] Trivial change to users listing to compress display a bit --- course/lib.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/course/lib.php b/course/lib.php index 1cbd5c85b8..01ff764ea8 100644 --- a/course/lib.php +++ b/course/lib.php @@ -243,14 +243,16 @@ function print_recent_activity($course) { $users = get_recent_enrolments($course->id, $timestart); if ($users) { + echo "

": foreach ($users as $user) { if (! $heading) { print_headline(get_string("newusers").":"); $heading = true; $content = true; } - echo "

id&course=$course->id\">$user->firstname $user->lastname

"; + echo "id&course=$course->id\">$user->firstname $user->lastname
"; } + echo "

": } // Next, have there been any modifications to the course structure? -- 2.39.5