From 364eef74411c33132d3519313beda10bc2d37d6d Mon Sep 17 00:00:00 2001 From: poltawski Date: Thu, 15 Mar 2007 15:46:53 +0000 Subject: [PATCH] Further fix for MDL-8582, merged from MOODLE_18_STABLE --- user/index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/user/index.php b/user/index.php index 345da07060..88917dee5d 100644 --- a/user/index.php +++ b/user/index.php @@ -171,7 +171,7 @@ echo ''; $courselist = array(); foreach ($mycourses as $mycourse) { - $courselist[$mycourse->id] = $mycourse->shortname; + $courselist[$mycourse->id] = format_string($mycourse->shortname); } popup_form($CFG->wwwroot.'/user/index.php?roleid='.$roleid.'&sifirst=&silast=&id=', $courselist, 'courseform', $course->id, '', '', '', false, 'self', get_string('mycourses')); -- 2.39.5