From bf0b04f3d553aac5ede8450faa1fef39ed1a02d0 Mon Sep 17 00:00:00 2001 From: nicolasconnault Date: Thu, 1 Mar 2007 05:16:02 +0000 Subject: [PATCH] MDL-8691 Added format_string() around $course->shortname in calendar.view.php --- calendar/view.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)) { -- 2.39.5