]> git.mjollnir.org Git - moodle.git/commitdiff
MDL-19822 Converted all print_footer() calls
authornicolasconnault <nicolasconnault>
Thu, 6 Aug 2009 14:25:32 +0000 (14:25 +0000)
committernicolasconnault <nicolasconnault>
Thu, 6 Aug 2009 14:25:32 +0000 (14:25 +0000)
search/indexersplash.php
search/query.php
search/stats.php

index 8f80e69156874a2c0185573051bfd846cb0feac7..916a3ef6da35efc71687ee0dfd626fbca5135861 100644 (file)
@@ -66,8 +66,8 @@
               ."<a href='tests/index.php'>Test indexing</a> or "
               ."<a href='indexer.php?areyousure=yes'>Continue indexing</a> or <a href='index.php'>Back to query page</a>."
               ."</pre>");
-        print_footer();
+        echo $OUTPUT->footer();
     } else {
         header('Location: indexer.php?areyousure=yes');
     }
-?>
\ No newline at end of file
+?>
index 96c753ca72d9bb6863af1df698f7533c096111ae..41e6f6eed1f82bf63670ba232e7e1e9e5ff324c6 100644 (file)
     <?php
     }
     print_box_end();
-    print_footer();
+    echo $OUTPUT->footer();
 ?>
index 703c1bedf8cdf899738be978ee5798a1a9fae823..e74671a897c3d8d4edbb2ec96b4131784c82ad0c 100644 (file)
@@ -165,5 +165,5 @@ require_once($CFG->dirroot.'/search/lib.php');
     
     print_box_end();
     print_box_end();
-    print_footer();
+    echo $OUTPUT->footer();
 ?>