From: nicolasconnault Date: Thu, 6 Aug 2009 14:25:44 +0000 (+0000) Subject: MDL-19824 Converted all print_footer() calls X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=344ca4c9ef300ca9c6820e16a88f2c1629665775;p=moodle.git MDL-19824 Converted all print_footer() calls --- 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();