From 641f16bafceeece98e5340b8e55f24e02238b40a Mon Sep 17 00:00:00 2001 From: nicolasconnault Date: Thu, 6 Aug 2009 14:21:09 +0000 Subject: [PATCH] MDL-19816 Converted all print_footer() calls --- mod/survey/index.php | 2 +- mod/survey/report.php | 2 +- mod/survey/view.php | 6 +++--- 3 files changed, 5 insertions(+), 5 deletions(-) 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(); ?> -- 2.39.5