From: nicolasconnault Date: Thu, 6 Aug 2009 14:21:09 +0000 (+0000) Subject: MDL-19816 Converted all print_footer() calls X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=641f16bafceeece98e5340b8e55f24e02238b40a;p=moodle.git MDL-19816 Converted all print_footer() calls --- diff --git a/mod/survey/index.php b/mod/survey/index.php index e3c5658a93..034b1dbd5c 100644 --- a/mod/survey/index.php +++ b/mod/survey/index.php @@ -79,6 +79,6 @@ echo "
"; print_table($table); - print_footer($course); + echo $OUTPUT->footer(); ?> diff --git a/mod/survey/report.php b/mod/survey/report.php index 968e598da5..ca0c9e4e74 100644 --- a/mod/survey/report.php +++ b/mod/survey/report.php @@ -448,5 +448,5 @@ break; } - print_footer($course); + echo $OUTPUT->footer(); ?> diff --git a/mod/survey/view.php b/mod/survey/view.php index e29d12c438..0a04d90c7b 100644 --- a/mod/survey/view.php +++ b/mod/survey/view.php @@ -101,7 +101,7 @@ } } - print_footer($course); + echo $OUTPUT->footer(); exit; } @@ -156,7 +156,7 @@ if (isguest()) { echo ''; echo ""; - print_footer($course); + echo $OUTPUT->footer(); exit; } @@ -176,6 +176,6 @@ echo ''; echo ""; - print_footer($course); + echo $OUTPUT->footer(); ?>