From: nicolasconnault Date: Thu, 6 Aug 2009 08:26:20 +0000 (+0000) Subject: MDL-19792 Migrated calls to print_heading X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=16ba76bd1ca89bcee587faffdd7ad07f4e108e97;p=moodle.git MDL-19792 Migrated calls to print_heading --- diff --git a/blog/index.php b/blog/index.php index 60760c8697..675636b958 100755 --- a/blog/index.php +++ b/blog/index.php @@ -145,7 +145,7 @@ if (!empty($user)) { if ($user->deleted) { print_header(); - print_heading(get_string('userdeleted')); + echo $OUTPUT->heading(get_string('userdeleted')); print_footer(); die; } diff --git a/blog/preferences.php b/blog/preferences.php index 0ab87bdb14..fd7034d3f8 100755 --- a/blog/preferences.php +++ b/blog/preferences.php @@ -47,7 +47,7 @@ $navigation = build_navigation($navlinks); print_header("$site->shortname: $strblogs : $strpreferences", $strblogs, $navigation); - print_heading($strpreferences); + echo $OUTPUT->heading($strpreferences); print_simple_box_start('center', '', ''); require('./preferences.html');