;
print_simple_box_end();
- print_footer($course);
+ echo $OUTPUT->footer();
exit;
} else { // regrade has been confirmed, so proceed
print_table($table);
// Finish the page
- print_footer($course);
+ echo $OUTPUT->footer();
?>
}
if (empty($user_ids)) {
echo $OUTPUT->heading(get_string('nousersyet'));
- print_footer($course);
+ echo $OUTPUT->footer();
exit;
}
// stop now if no attempts were found
if (empty($attempts)) {
echo $OUTPUT->heading(get_string('noattemptstoshow','quiz'));
- print_footer($course);
+ echo $OUTPUT->footer();
exit;
}
}
if ($formdata['reportformat']=='htm') {
- print_footer($course);
+ echo $OUTPUT->footer();
}
//////////////////////////////////////////////
hotpot_print_attempt_details($hotpot, $attempt);
}
hotpot_print_review_buttons($course, $hotpot, $attempt, $context);
- print_footer($course);
+ echo $OUTPUT->footer();
///////////////////////////
// functions
///////////////////////////
print "</div>\n";
print_simple_box_end();
print "</form>\n";
- print_footer();
+ echo $OUTPUT->footer();
exit;
// check password
} else if ($hotpot->password && strcmp($hotpot->password, $hppassword)) {