From 69ec0a8b1dbada208a511ac9e1be4c6376247924 Mon Sep 17 00:00:00 2001 From: moodler Date: Fri, 16 May 2003 06:27:23 +0000 Subject: [PATCH] Moved info about automatic unenrolling to the top where it makes more sense I think. --- user/index.php | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/user/index.php b/user/index.php index df04ead044..aeed828c4e 100644 --- a/user/index.php +++ b/user/index.php @@ -72,6 +72,12 @@ echo "

$numstudentsall $course->students

"; + if ($CFG->longtimenosee < 500) { + echo "

("; + print_string("unusedaccounts","",$CFG->longtimenosee); + echo ")

"; + } + if ($students = get_course_students($course->id, "$dsort $dir $limit")) { $numstudents = count($students); if ($numstudents < USER_SMALL_CLASS) { @@ -149,11 +155,6 @@ } } - if ($CFG->longtimenosee < 500) { - echo "

("; - print_string("unusedaccounts","",$CFG->longtimenosee); - echo ")

"; - } } print_footer($course); -- 2.39.5