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

This commit is contained in:
Barış Soner Uşaklı
2023-08-30 12:10:52 -04:00
parent 9f7a39c59c
commit 6ae0d207a7

View File

@@ -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('');
});