From: nicolasconnault Date: Thu, 6 Aug 2009 14:25:20 +0000 (+0000) Subject: MDL-19818 Converted all print_footer() calls X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=3c1d69dda3625f360ba15cf82aac7227d2c6bd8c;p=moodle.git MDL-19818 Converted all print_footer() calls --- diff --git a/notes/delete.php b/notes/delete.php index 99f77211ce..f187ff795e 100644 --- a/notes/delete.php +++ b/notes/delete.php @@ -63,6 +63,6 @@ if (data_submitted() && confirm_sesskey()) { notice_yesno(get_string('deleteconfirm', 'notes'), 'delete.php', 'index.php', $optionsyes, $optionsno, 'post', 'get'); echo '
'; note_print($note, NOTES_SHOW_BODY | NOTES_SHOW_HEAD); - print_footer(); + echo $OUTPUT->footer(); } ?> diff --git a/notes/edit.php b/notes/edit.php index dfcf2ec07d..512aa9c3a8 100644 --- a/notes/edit.php +++ b/notes/edit.php @@ -86,5 +86,5 @@ echo $OUTPUT->heading(fullname($user)); $noteform->display(); - print_footer(); + echo $OUTPUT->footer(); ?> diff --git a/notes/index.php b/notes/index.php index 6aca465463..653e819e96 100644 --- a/notes/index.php +++ b/notes/index.php @@ -41,7 +41,7 @@ if ($user->deleted) { print_header(); echo $OUTPUT->heading(get_string('userdeleted')); - print_footer(); + echo $OUTPUT->footer(); die; } @@ -120,5 +120,5 @@ print_box_end(); - print_footer($course); + echo $OUTPUT->footer(); ?>