Skip to content

Commit

Permalink
MDL-19818 Converted all print_footer() calls
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolasconnault committed Aug 6, 2009
1 parent 745da50 commit 3c1d69d
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion notes/delete.php
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,6 @@
notice_yesno(get_string('deleteconfirm', 'notes'), 'delete.php', 'index.php', $optionsyes, $optionsno, 'post', 'get');
echo '<br />';
note_print($note, NOTES_SHOW_BODY | NOTES_SHOW_HEAD);
print_footer();
echo $OUTPUT->footer();
}
?>
2 changes: 1 addition & 1 deletion notes/edit.php
Original file line number Diff line number Diff line change
Expand Up @@ -86,5 +86,5 @@
echo $OUTPUT->heading(fullname($user));

$noteform->display();
print_footer();
echo $OUTPUT->footer();
?>
4 changes: 2 additions & 2 deletions notes/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
if ($user->deleted) {
print_header();
echo $OUTPUT->heading(get_string('userdeleted'));
print_footer();
echo $OUTPUT->footer();
die;
}

Expand Down Expand Up @@ -120,5 +120,5 @@

print_box_end();

print_footer($course);
echo $OUTPUT->footer();
?>

0 comments on commit 3c1d69d

Please sign in to comment.