From: moodler Date: Tue, 23 Sep 2003 03:11:36 +0000 (+0000) Subject: Trivial change to users listing to compress display a bit X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=e1d1049893f3ba1d68c041dbb63c4972b9032665;p=moodle.git Trivial change to users listing to compress display a bit --- 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?