mirror of
https://github.com/moodle/moodle.git
synced 2025-08-02 23:59:41 +02:00
MDL-8691
Added format_string() around $course->shortname in calendar.view.php
This commit is contained in:
parent
2aab6488a6
commit
bf0b04f3d5
1 changed files with 1 additions and 1 deletions
|
@ -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)) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue