From daa2cd33a13f62dfcaf6625e2c3af222d4908430 Mon Sep 17 00:00:00 2001 From: nicolasconnault <nicolasconnault> Date: Thu, 6 Aug 2009 14:25:32 +0000 Subject: [PATCH] MDL-19822 Converted all print_footer() calls --- search/indexersplash.php | 4 ++-- search/query.php | 2 +- search/stats.php | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/search/indexersplash.php b/search/indexersplash.php index 8f80e69156..916a3ef6da 100644 --- a/search/indexersplash.php +++ b/search/indexersplash.php @@ -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 +?> diff --git a/search/query.php b/search/query.php index 96c753ca72..41e6f6eed1 100644 --- a/search/query.php +++ b/search/query.php @@ -379,5 +379,5 @@ <?php } print_box_end(); - print_footer(); + echo $OUTPUT->footer(); ?> diff --git a/search/stats.php b/search/stats.php index 703c1bedf8..e74671a897 100644 --- a/search/stats.php +++ b/search/stats.php @@ -165,5 +165,5 @@ require_once($CFG->dirroot.'/search/lib.php'); print_box_end(); print_box_end(); - print_footer(); + echo $OUTPUT->footer(); ?> -- 2.39.5