diff --git a/mod/survey/index.php b/mod/survey/index.php index e3c5658a931..034b1dbd5c5 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 968e598da57..ca0c9e4e746 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 e29d12c438d..0a04d90c7b3 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(); ?>