Skip to content
This repository was archived by the owner on Jan 5, 2018. It is now read-only.

Commit bbca6d6

Browse files
committed
Issue #2679697 by Berdir: DropzoneJsUploadSave does not create new folders recursively
1 parent 6dba258 commit bbca6d6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/DropzoneJsUploadSave.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -242,7 +242,7 @@ protected function prepareDestination(FileInterface $file, $destination) {
242242

243243
// Prepare the destination dir.
244244
if (!file_exists($destination)) {
245-
$this->fileSystem->mkdir($destination);
245+
$this->fileSystem->mkdir($destination, NULL, TRUE);
246246
}
247247

248248
// A file URI may already have a trailing slash or look like "public://".

0 commit comments

Comments
 (0)