Merge branch 'MDL-62061-master' of git://github.com/abgreeve/moodle

This commit is contained in:
Jun Pataleta 2018-12-10 14:47:17 +08:00
commit 077f144293

View File

@ -212,7 +212,8 @@ class moodle_content_writer implements content_writer {
[$file->get_filepath()]
);
$path = $this->get_path($pathitems, $file->get_filename());
check_dir_exists(dirname($path), true, true);
$fullpath = $this->get_full_path($pathitems, $file->get_filename());
check_dir_exists(dirname($fullpath), true, true);
$this->files[$path] = $file;
}