mirror of
https://github.com/moodle/moodle.git
synced 2025-08-05 00:46:50 +02:00
javascript: MDL-16695 print_footer('empty'); I had the wrong type of quotes.
Thanks to Dongsheng for noticing.
This commit is contained in:
parent
009a97ce00
commit
5085a59ad7
1 changed files with 1 additions and 1 deletions
|
@ -2721,7 +2721,7 @@ function print_footer($course=NULL, $usercourse=NULL, $return=false) {
|
||||||
//1.8 theme compatibility
|
//1.8 theme compatibility
|
||||||
$output .= "\n</div>"; // content div
|
$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) {
|
if ($return) {
|
||||||
return $output;
|
return $output;
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue