]> git.mjollnir.org Git - moodle.git/commitdiff
MDL-19818 Converted all print_footer() calls
authornicolasconnault <nicolasconnault>
Thu, 6 Aug 2009 14:25:20 +0000 (14:25 +0000)
committernicolasconnault <nicolasconnault>
Thu, 6 Aug 2009 14:25:20 +0000 (14:25 +0000)
notes/delete.php
notes/edit.php
notes/index.php

index 99f77211ce79461d9bdd517595207464e07c85b1..f187ff795e39c1ed63bd8f143d8b5c0b39aa08b5 100644 (file)
@@ -63,6 +63,6 @@ if (data_submitted() && confirm_sesskey()) {
     notice_yesno(get_string('deleteconfirm', 'notes'), 'delete.php', 'index.php', $optionsyes, $optionsno, 'post', 'get');
     echo '<br />';
     note_print($note, NOTES_SHOW_BODY | NOTES_SHOW_HEAD);
-    print_footer();
+    echo $OUTPUT->footer();
 }
 ?>
index dfcf2ec07d4ff701d8b2d4a55fc25062df5d0794..512aa9c3a8145f70e8bd1807e23ff3ba90043834 100644 (file)
@@ -86,5 +86,5 @@
     echo $OUTPUT->heading(fullname($user));
 
     $noteform->display();
-    print_footer();
+    echo $OUTPUT->footer();
 ?>
index 6aca465463a6bc4a4be080ccdbe27eadfddb9e99..653e819e96f1652e9e420ebcdd60cd019a680a52 100644 (file)
@@ -41,7 +41,7 @@
         if ($user->deleted) {
             print_header();
             echo $OUTPUT->heading(get_string('userdeleted'));
-            print_footer();
+            echo $OUTPUT->footer();
             die;
         }
 
 
     print_box_end();
 
-    print_footer($course);
+    echo $OUTPUT->footer();
 ?>