if(!$confirm && $form->pagestodelete) {
notice_yesno(get_string("removepagecheck", "wiki")."<br />".join(", ", $form->pagestodelete),
$link."&confirm=".urlencode(join(" ",$form->pagestodelete)), $link);
- print_footer($course);
+ echo $OUTPUT->footer();
exit;
}
}
}
notice_yesno(get_string("strippagecheck", "wiki")."<br />".join(", ", $pagestostrip),
$link.$confirm, $link);
- print_footer($course);
+ echo $OUTPUT->footer();
exit;
}
}
$confirm="&confirm=".$form->pagetocheck;
notice_yesno(get_string("checklinkscheck", "wiki").$form->pagetocheck,
$link.$confirm, $link);
- print_footer($course);
+ echo $OUTPUT->footer();
exit;
}
}
if($revertedpages) {
notice_yesno(get_string("revertpagescheck", "wiki")."<br />".$revertedpages,
$link.$confirm, $link);
- print_footer($course);
+ echo $OUTPUT->footer();
exit;
} else {
$err->remark=get_string("nochangestorevert","wiki");
print_simple_box_end();
/// Finish the page
- print_footer($course);
+ echo $OUTPUT->footer();
exit;
?>