From: nicolasconnault Date: Thu, 1 Mar 2007 05:16:02 +0000 (+0000) Subject: MDL-8691 X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=bf0b04f3d553aac5ede8450faa1fef39ed1a02d0;p=moodle.git MDL-8691 Added format_string() around $course->shortname in calendar.view.php --- diff --git a/calendar/view.php b/calendar/view.php index 090a370c27..bd16f659a9 100644 --- a/calendar/view.php +++ b/calendar/view.php @@ -595,7 +595,7 @@ function calendar_course_filter_selector($getvars = '') { $courseoptions[SITEID] = get_string('fulllistofcourses'); foreach ($courses as $course) { - $courseoptions[$course->id] = $course->shortname; + $courseoptions[$course->id] = format_string($course->shortname); } if (is_numeric($SESSION->cal_courses_shown)) {