]> git.mjollnir.org Git - moodle.git/commitdiff
MDL-19789 Converted all print_footer() calls
authornicolasconnault <nicolasconnault>
Thu, 6 Aug 2009 14:23:15 +0000 (14:23 +0000)
committernicolasconnault <nicolasconnault>
Thu, 6 Aug 2009 14:23:15 +0000 (14:23 +0000)
backup/backup.php
backup/restore.php

index 1078b767432ec7584436270de8c3d820f75b524e..d0d36901c67e3002216dd220cdaa580e7996af52 100644 (file)
@@ -82,7 +82,7 @@
             echo $OUTPUT->heading(get_string("nocoursesyet"));
             print_continue("$CFG->wwwroot/$CFG->admin/index.php");
         }
-        print_footer();
+        echo $OUTPUT->footer();
         exit;
     }
 
     print_simple_box_end();
 
     //Print footer
-    print_footer();
+    echo $OUTPUT->footer();
 ?>
index e619679bd8828ef104fec25be9db744fdbb3c746..a2386a245aa960b0afbd5a3c686af7cf2befdbc9 100644 (file)
         print_header("$site->shortname: $strcourserestore", $site->fullname, $navigation);
         echo $OUTPUT->heading(get_string("nofilesselected"));
         print_continue("$CFG->wwwroot/$CFG->admin/index.php");
-        print_footer();
+        echo $OUTPUT->footer();
         exit;
     }
 
         print_header("$site->shortname: $strcourserestore", $site->fullname, $navigation);
         echo $OUTPUT->heading(get_string("restorecancelled"));
         print_continue("$CFG->wwwroot/course/view.php?id=".$id);
-        print_footer();
+        echo $OUTPUT->footer();
         exit;
     }
 
     print_simple_box_end();
 
     //Print footer
-    print_footer();
+    echo $OUTPUT->footer();
 
 ?>