Fixed typo from testing

This commit is contained in:
martin 2002-09-21 06:13:42 +00:00
parent e6b9ee042d
commit 3f63219688

View File

@ -50,7 +50,7 @@
if ($students = get_course_students($course->id, "$sort $dir")) {
$numstudents = count($students);
echo "<H2 align=center>$numstudents $course->students</H2>";
if ($numstudents > 30) {
if ($numstudents < 30) {
foreach ($students as $student) {
print_user($student, $course, $string);
}