From e6e565ab20b784fcbc5db387315e3dca58c9a284 Mon Sep 17 00:00:00 2001 From: nicolasconnault Date: Thu, 6 Aug 2009 14:09:50 +0000 Subject: [PATCH] MDL-19819 Converted all print_footer() calls --- portfolio/add.php | 2 +- portfolio/already.php | 2 +- portfolio/type/download/file.php | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/portfolio/add.php b/portfolio/add.php index 856af462be..c52417fdcc 100644 --- a/portfolio/add.php +++ b/portfolio/add.php @@ -203,7 +203,7 @@ if (!$exporter->get('instance')) { print_simple_box_start(); $mform->display(); print_simple_box_end(); - print_footer(); + echo $OUTPUT->footer(); exit; } } diff --git a/portfolio/already.php b/portfolio/already.php index b4f3878c80..cf791add48 100644 --- a/portfolio/already.php +++ b/portfolio/already.php @@ -75,6 +75,6 @@ if (count($table->data) > 0) { print_table($table); } -print_footer(); +echo $OUTPUT->footer(); ?> diff --git a/portfolio/type/download/file.php b/portfolio/type/download/file.php index 1aeff5f6e1..63d857a078 100644 --- a/portfolio/type/download/file.php +++ b/portfolio/type/download/file.php @@ -35,6 +35,6 @@ echo '
f.submit(); '; -print_footer(); +echo $OUTPUT->footer(); ?> -- 2.39.5