Skip to content
Snippets Groups Projects
Commit 858ef836 authored by Frans Saris's avatar Frans Saris Committed by Markus Klein
Browse files

[BUGFIX] Use delayedImportElement after uploading files

When uploading multiple files in TCEForm the DrapUploader
adds all uploaded files directly to the inline element of the
form. But when a previous request isn't finished yet, it
breaks the processing of last request.

This patch changes the use of importElement to
delayedImportElement so the next element is only added
when the previous is processed.

Resolves: #58956
Resolves: #57472
Resolves: #57190
Releases: 6.2
Change-Id: Iccad2ee19a5462cb63ed749ad60cb685460eb66d
Reviewed-on: https://review.typo3.org/30609
Reviewed-by: Helmut Hummel
Tested-by: Marc Fell
Reviewed-by: Markus Klein
Tested-by: Markus Klein
parent 7a876ddc
Branches
Tags
No related merge requests found
......@@ -244,7 +244,7 @@ define('TYPO3/CMS/Backend/DragUploader', ['jquery'], function($) {
}
if (me.dragUploader.$element.data('file-irre-object')) {
inline.importElement(
inline.delayedImportElement(
me.dragUploader.$element.data('file-irre-object'),
'sys_file',
data.result.upload[0].uid,
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment