From c6144706fb3d21bfcd60faacd2487491acdb0f15 Mon Sep 17 00:00:00 2001 From: moodler Date: Thu, 23 Aug 2007 05:14:57 +0000 Subject: [PATCH] Removed checked default from teachers on course reset page MDL-10946 --- course/reset.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/course/reset.php b/course/reset.php index c405e5af777..9f0d599e033 100755 --- a/course/reset.php +++ b/course/reset.php @@ -60,8 +60,8 @@ The feature will also reset the start date of the course if necessary. echo '
'; echo $strremove.':
'; + print_checkbox('reset_teachers', 1, false, get_string('teachers'), '', ''); echo '
'; print_checkbox('reset_students', 1, true, get_string('students'), '', ''); echo '
'; - print_checkbox('reset_teachers', 1, true, get_string('teachers'), '', ''); echo '
'; print_checkbox('reset_events', 1, true, get_string('courseevents', 'calendar'), '', ''); echo '
'; print_checkbox('reset_logs', 1, true, get_string('logs'), '', ''); echo '
'; print_checkbox('reset_groups', 1, true, get_string('groups'), '', ''); echo '
';