From: tjhunt Date: Fri, 19 Jun 2009 08:02:11 +0000 (+0000) Subject: javascript: MDL-16695 print_footer('empty'); I had the wrong type of quotes. X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=5085a59ad75da65380d417a03617e7066d377f26;p=moodle.git javascript: MDL-16695 print_footer('empty'); I had the wrong type of quotes. Thanks to Dongsheng for noticing. --- 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 {