Added format_string() around $course->shortname in calendar.view.php
This commit is contained in:
nicolasconnault 2007-03-01 05:16:02 +00:00
parent 2aab6488a6
commit bf0b04f3d5

View file

@ -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)) {