MDL-29188 course_formats Fixed up formatting of section name within navigation
authorSam Hemelryk <sam@moodle.com>
Tue, 13 Sep 2011 23:39:48 +0000 (11:39 +1200)
committerSam Hemelryk <sam@moodle.com>
Tue, 13 Sep 2011 23:39:48 +0000 (11:39 +1200)
course/format/topics/lib.php
course/format/weeks/lib.php

index 9bd94d4..dddbcf7 100644 (file)
@@ -70,7 +70,7 @@ function callback_topics_request_key() {
 function callback_topics_get_section_name($course, $section) {
     // We can't add a node without any text
     if (!empty($section->name)) {
-        return $section->name;
+        return format_string($section->name, true, array('context' => get_context_instance(CONTEXT_COURSE, $course->id)));
     } else if ($section->section == 0) {
         return get_string('section0name', 'format_topics');
     } else {
index 34fd501..9524587 100644 (file)
@@ -78,7 +78,7 @@ function callback_weeks_get_section_name($course, $section) {
     // We can't add a node without text
     if (!empty($section->name)) {
         // Return the name the user set
-        return $section->name;
+        return format_string($section->name, true, array('context' => get_context_instance(CONTEXT_COURSE, $course->id)));
     } else if ($section->section == 0) {
         // Return the section0name
         return get_string('section0name', 'format_weeks');