Skip to content
Snippets Groups Projects
Commit cc47c76e authored by std-odoo's avatar std-odoo
Browse files

[FIX] mass_mailing: escape the mailing list name


Task-2241443

closes odoo/odoo#50488

X-original-commit: afa2153a
Signed-off-by: default avatarThibault Delavallee (tde) <tde@openerp.com>
parent ce45b1cf
No related branches found
No related tags found
No related merge requests found
......@@ -48,7 +48,7 @@ odoo.define('mass_mailing.unsubscribe', function (require) {
if (unsubscribed_list){
$('#subscription_info').html(_.str.sprintf(
_t("You have been <strong>successfully unsubscribed from %s</strong>."),
unsubscribed_list
_.escape(unsubscribed_list)
));
}
else{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment