MDL-33531 backup Added format_string to course shortname
This commit is contained in:
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user