From 344ca4c9ef300ca9c6820e16a88f2c1629665775 Mon Sep 17 00:00:00 2001 From: nicolasconnault Date: Thu, 6 Aug 2009 14:25:44 +0000 Subject: [PATCH] MDL-19824 Converted all print_footer() calls --- theme/index.php | 4 ++-- theme/preview.php | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/theme/index.php b/theme/index.php index ecc1943b0d..4720e60a01 100644 --- a/theme/index.php +++ b/theme/index.php @@ -57,7 +57,7 @@ if ($choose and confirm_sesskey()) { print_continue($CFG->wwwroot . '/' . $CFG->admin . '/index.php'); - admin_externalpage_print_footer(); + echo $OUTPUT->footer(); exit; } @@ -140,5 +140,5 @@ foreach ($themes as $themename => $themedir) { print_table($table); -admin_externalpage_print_footer(); +echo $OUTPUT->footer(); ?> diff --git a/theme/preview.php b/theme/preview.php index 955acd604d..0db051db1f 100644 --- a/theme/preview.php +++ b/theme/preview.php @@ -46,4 +46,4 @@ print_box_start(); echo $OUTPUT->heading($preview); print_box_end(); -print_footer(); +echo $OUTPUT->footer(); -- 2.39.5