1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-01-18 14:48:28 +01:00

[ticket/15721] Make plupload more versatile

PHPBB3-15721
This commit is contained in:
Jakub Senko 2018-09-06 14:26:06 +02:00
parent bd90a53589
commit f2c53bfffd
No known key found for this signature in database
GPG Key ID: 6A7C328CD66EC21E

View File

@ -211,7 +211,7 @@ phpbb.plupload.updateHiddenData = function(row, attach, index) {
.attr('type', 'hidden') .attr('type', 'hidden')
.attr('name', 'attachment_data[' + index + '][' + key + ']') .attr('name', 'attachment_data[' + index + '][' + key + ']')
.attr('value', attach[key]); .attr('value', attach[key]);
$('textarea', row).after(input); $(row).append(input);
} }
}; };