From: nicolasconnault Date: Thu, 6 Aug 2009 08:17:36 +0000 (+0000) Subject: MDL-19818 Migrated calls to print_heading X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=587a4eb0e0827d5cc171b28009c3ed6804056abd;p=moodle.git MDL-19818 Migrated calls to print_heading --- diff --git a/notes/edit.php b/notes/edit.php index 5ea85b29e2..dfcf2ec07d 100644 --- a/notes/edit.php +++ b/notes/edit.php @@ -83,7 +83,7 @@ print_header($course->shortname . ': ' . $strnotes, $course->fullname, build_navigation($nav)); - print_heading(fullname($user)); + echo $OUTPUT->heading(fullname($user)); $noteform->display(); print_footer(); diff --git a/notes/index.php b/notes/index.php index 914da33475..6aca465463 100644 --- a/notes/index.php +++ b/notes/index.php @@ -40,7 +40,7 @@ if ($user->deleted) { print_header(); - print_heading(get_string('userdeleted')); + echo $OUTPUT->heading(get_string('userdeleted')); print_footer(); die; }