From: moodler Date: Fri, 16 May 2003 06:27:23 +0000 (+0000) Subject: Moved info about automatic unenrolling to the top where it makes more sense X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=69ec0a8b1dbada208a511ac9e1be4c6376247924;p=moodle.git Moved info about automatic unenrolling to the top where it makes more sense I think. --- 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);