From d5bfce1f861e648bba353cce98f1c0b9c4200457 Mon Sep 17 00:00:00 2001 From: samhemelryk Date: Thu, 3 Sep 2009 05:31:38 +0000 Subject: [PATCH] admin MDL-19787 Upgraded print_header and build_navigation calls to use PAGE and OUTPUT equivilants --- admin/roles/explain.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/admin/roles/explain.php b/admin/roles/explain.php index d1b5e62830..a4b6c0a6c3 100755 --- a/admin/roles/explain.php +++ b/admin/roles/explain.php @@ -177,7 +177,8 @@ $strperm = array( ); // Start the output. -print_header(get_string('explainpermission', 'role')); +$PAGE->set_title(get_string('explainpermission', 'role')); +echo $OUTPUT->header(); echo $OUTPUT->heading(get_string('explainpermission', 'role')); // Print a summary of what we are doing. -- 2.39.5