mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
Merge pull request #1024 from kinglozzer/8051-insert-media-duplicates
BUG Fix insert media form inserting images from other UploadFields (#8051)
This commit is contained in:
commit
7be8a2252f
@ -874,7 +874,7 @@ ss.editorWrappers['default'] = ss.editorWrappers.tinyMCE;
|
|||||||
//get the uploaded file ID when this event triggers, signaling the upload has compeleted successfully
|
//get the uploaded file ID when this event triggers, signaling the upload has compeleted successfully
|
||||||
editFieldIDs.push($(this).data('id'));
|
editFieldIDs.push($(this).data('id'));
|
||||||
});
|
});
|
||||||
var uploadedFiles = $('.ss-uploadfield-files').children('.ss-uploadfield-item');
|
var uploadedFiles = form.find('.ss-uploadfield-files').children('.ss-uploadfield-item');
|
||||||
uploadedFiles.each(function(){
|
uploadedFiles.each(function(){
|
||||||
var uploadedID = $(this).data('fileid');
|
var uploadedID = $(this).data('fileid');
|
||||||
if ($.inArray(uploadedID, editFieldIDs) == -1) {
|
if ($.inArray(uploadedID, editFieldIDs) == -1) {
|
||||||
|
Loading…
Reference in New Issue
Block a user