From: André Peters Date: Sun, 9 Jul 2017 16:30:01 +0000 (+0200) Subject: More htmlEscapes. X-Git-Tag: 1.7.0~872^2 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=refs%2Fpull%2F1739%2Fhead;p=rspamd.git More htmlEscapes. --- diff --git a/interface/js/app/history.js b/interface/js/app/history.js index f23d8db83..378c3cf7b 100644 --- a/interface/js/app/history.js +++ b/interface/js/app/history.js @@ -31,8 +31,10 @@ function($, _, Humanize) { '<': '<', '>': '>', '"': '"', - "'": ''', - '/': '/' + "'": ''', + '/': '/', + '`': '`', + '=': '=' }; var htmlEscaper = /[&<>"'\/]/g;