From 5085a59ad75da65380d417a03617e7066d377f26 Mon Sep 17 00:00:00 2001 From: tjhunt Date: Fri, 19 Jun 2009 08:02:11 +0000 Subject: [PATCH] javascript: MDL-16695 print_footer('empty'); I had the wrong type of quotes. Thanks to Dongsheng for noticing. --- lib/weblib.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/weblib.php b/lib/weblib.php index 1d17043558..71db25fdf1 100644 --- a/lib/weblib.php +++ b/lib/weblib.php @@ -2721,7 +2721,7 @@ function print_footer($course=NULL, $usercourse=NULL, $return=false) { //1.8 theme compatibility $output .= "\n"; // content div } - $output .= '\n\n' . $PAGE->requires->get_end_code() . '\n'; // close page div started in header + $output .= "\n\n" . $PAGE->requires->get_end_code() . "\n"; // close page div started in header if ($return) { return $output; } else { -- 2.39.5