fix: double escape issue, body is escaped in composer-default

isekai-main
Barış Soner Uşaklı 1 year ago
parent 9f7a39c59c
commit 6ae0d207a7

@ -115,7 +115,7 @@ define('quickreply', [
composer.newReply({
tid: ajaxify.data.tid,
title: ajaxify.data.title,
body: utils.escapeHTML(textEl.val()),
body: textEl.val(),
});
textEl.val('');
});

Loading…
Cancel
Save