]> git.mjollnir.org Git - moodle.git/commitdiff
MDL-19818 Migrated calls to print_heading
authornicolasconnault <nicolasconnault>
Thu, 6 Aug 2009 08:17:36 +0000 (08:17 +0000)
committernicolasconnault <nicolasconnault>
Thu, 6 Aug 2009 08:17:36 +0000 (08:17 +0000)
notes/edit.php
notes/index.php

index 5ea85b29e217704eca82ed7f1b839a29aa30196c..dfcf2ec07d4ff701d8b2d4a55fc25062df5d0794 100644 (file)
@@ -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();
index 914da33475146d7cd3a5ac9c8a560739188364d0..6aca465463a6bc4a4be080ccdbe27eadfddb9e99 100644 (file)
@@ -40,7 +40,7 @@
 
         if ($user->deleted) {
             print_header();
-            print_heading(get_string('userdeleted'));
+            echo $OUTPUT->heading(get_string('userdeleted'));
             print_footer();
             die;
         }