From 9314a6bea9636fc1d9d6e637e7cfc045a9f05fa0 Mon Sep 17 00:00:00 2001 From: nicolasconnault Date: Thu, 6 Aug 2009 14:22:10 +0000 Subject: [PATCH] MDL-19793 Converted all print_footer() calls --- calendar/event.php | 2 +- calendar/export.php | 2 +- calendar/preferences.php | 2 +- calendar/view.php | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/calendar/event.php b/calendar/event.php index b4d406e9e6..ae5fbee15d 100644 --- a/calendar/event.php +++ b/calendar/event.php @@ -558,7 +558,7 @@ echo ''; echo ''; - print_footer(); + echo $OUTPUT->footer(); function validate_form(&$form, &$err) { diff --git a/calendar/export.php b/calendar/export.php index cb9d276dc9..1ec6009712 100644 --- a/calendar/export.php +++ b/calendar/export.php @@ -132,7 +132,7 @@ echo ''; echo ''; -print_footer(); +echo $OUTPUT->footer(); diff --git a/calendar/preferences.php b/calendar/preferences.php index 3eafa1b204..d85ab83854 100644 --- a/calendar/preferences.php +++ b/calendar/preferences.php @@ -84,6 +84,6 @@ include('./preferences.html'); print_simple_box_end(); - print_footer($course); + echo $OUTPUT->footer(); ?> diff --git a/calendar/view.php b/calendar/view.php index c122b7bef3..d40a905a3f 100644 --- a/calendar/view.php +++ b/calendar/view.php @@ -215,7 +215,7 @@ echo ''; - print_footer(); + echo $OUTPUT->footer(); -- 2.39.5