1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-28 20:40:24 +02: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

View File

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