javascript: MDL-16695 print_footer('empty'); I had the wrong type of quotes.

Thanks to Dongsheng for noticing.
This commit is contained in:
tjhunt 2009-06-19 08:02:11 +00:00
parent 009a97ce00
commit 5085a59ad7

View File

@ -2721,7 +2721,7 @@ function print_footer($course=NULL, $usercourse=NULL, $return=false) {
//1.8 theme compatibility
$output .= "\n</div>"; // content div
}
$output .= '\n</div>\n' . $PAGE->requires->get_end_code() . '</body>\n</html>'; // close page div started in header
$output .= "\n</div>\n" . $PAGE->requires->get_end_code() . "</body>\n</html>"; // close page div started in header
if ($return) {
return $output;
} else {