MDL-19799 Converted all print_footer() calls

This commit is contained in:
nicolasconnault
2009-08-06 14:21:34 +00:00
parent 641f16bafc
commit 7e0d66753e
17 changed files with 36 additions and 38 deletions
+3 -3
View File
@@ -5096,9 +5096,9 @@ function admin_externalpage_print_header($focus='') {
*/
function admin_externalpage_print_footer() {
// TODO Still 103 referernces in core code. Don't do debugging output yet.
// debugging('admin_externalpage_print_footer is deprecated. Please use print_footer ' .
// '(or even $OUTPUT->footer() instead.', DEBUG_DEVELOPER);
print_footer();
debugging('admin_externalpage_print_footer is deprecated. Please $OUTPUT->footer() instead.', DEBUG_DEVELOPER);
global $OUTPUT;
echo $OUTPUT->footer();
}
/**