diff --git a/backup/util/helper/backup_cron_helper.class.php b/backup/util/helper/backup_cron_helper.class.php index 6b1677b2797..9715a5d06ad 100644 --- a/backup/util/helper/backup_cron_helper.class.php +++ b/backup/util/helper/backup_cron_helper.class.php @@ -512,7 +512,8 @@ abstract class backup_cron_automated_helper { // MDL-33531: use different filenames depending on backup_shortname option if ( !empty($config->backup_shortname) ) { - $courseref = $course->shortname; + $context = get_context_instance(CONTEXT_COURSE, $course->id); + $courseref = format_string($course->shortname, true, array('context' => $context)); $courseref = str_replace(' ', '_', $courseref); $courseref = textlib::strtolower(trim(clean_filename($courseref), '_')); } else {