From d9d6786aad3a43d9f0a6d1af487c7c5b13095127 Mon Sep 17 00:00:00 2001 From: Michael Milette Date: Tue, 24 Nov 2015 16:47:58 -0500 Subject: [PATCH] APPLY-FixMultilanguage Will now process the course name, which appears in the heading, through Moodle filters in order to handle language tagged course names in a multilingual Moodle environment. --- edit.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/edit.php b/edit.php index 6a642ae..36e4a33 100644 --- a/edit.php +++ b/edit.php @@ -71,7 +71,7 @@ if ($mform->is_cancelled()) { redirect($return); } -$PAGE->set_heading($course->fullname); +$PAGE->set_heading(format_string($course->fullname)); $PAGE->set_title(get_string('pluginname', 'enrol_apply')); echo $OUTPUT->header();