From 587a4eb0e0827d5cc171b28009c3ed6804056abd Mon Sep 17 00:00:00 2001 From: nicolasconnault Date: Thu, 6 Aug 2009 08:17:36 +0000 Subject: [PATCH] MDL-19818 Migrated calls to print_heading --- notes/edit.php | 2 +- notes/index.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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; } -- 2.39.5