mirror of
https://github.com/moodle/moodle.git
synced 2025-08-04 08:26:37 +02:00
MDL-19792 Converted all print_footer() calls
This commit is contained in:
parent
9314a6bea9
commit
033e4aff8c
4 changed files with 6 additions and 6 deletions
|
@ -64,7 +64,7 @@ if ($action === 'delete'){
|
|||
blog_print_entry($existing);
|
||||
echo '<br />';
|
||||
notice_yesno(get_string('blogdeleteconfirm', 'blog'), 'edit.php', 'index.php', $optionsyes, $optionsno, 'post', 'get');
|
||||
print_footer();
|
||||
echo $OUTPUT->footer();
|
||||
die;
|
||||
}
|
||||
}
|
||||
|
@ -136,7 +136,7 @@ $blogeditform->set_data($post);
|
|||
$blogeditform->display();
|
||||
|
||||
|
||||
print_footer();
|
||||
echo $OUTPUT->footer();
|
||||
|
||||
|
||||
die;
|
||||
|
|
|
@ -3,5 +3,5 @@
|
|||
</table>
|
||||
<?php
|
||||
|
||||
print_footer($course);
|
||||
echo $OUTPUT->footer();
|
||||
?>
|
||||
|
|
|
@ -146,7 +146,7 @@ if (!empty($user)) {
|
|||
if ($user->deleted) {
|
||||
print_header();
|
||||
echo $OUTPUT->heading(get_string('userdeleted'));
|
||||
print_footer();
|
||||
echo $OUTPUT->footer();
|
||||
die;
|
||||
}
|
||||
|
||||
|
@ -205,6 +205,6 @@ add_to_log($courseid, 'blog', 'view', 'index.php?filtertype='.$filtertype.'&
|
|||
|
||||
include($CFG->dirroot .'/blog/footer.php');
|
||||
|
||||
print_footer();
|
||||
echo $OUTPUT->footer();
|
||||
|
||||
?>
|
||||
|
|
|
@ -53,5 +53,5 @@
|
|||
require('./preferences.html');
|
||||
print_simple_box_end();
|
||||
|
||||
print_footer();
|
||||
echo $OUTPUT->footer();
|
||||
?>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue