Merge branch 'MDL-54584-master' of git://github.com/andrewnicols/moodle

This commit is contained in:
David Monllao 2016-05-16 16:15:03 +08:00
commit df88d9a72e

View File

@ -1617,6 +1617,9 @@ abstract class repository implements cacheable_object {
* @return file path
*/
public function prepare_file($filename) {
if (empty($filename)) {
$filename = 'file';
}
return sprintf('%s/%s', make_request_directory(), $filename);
}