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: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F1739%2Fhead;p=thirdparty%2Frspamd.git More htmlEscapes. --- diff --git a/interface/js/app/history.js b/interface/js/app/history.js index f23d8db835..378c3cf7b1 100644 --- a/interface/js/app/history.js +++ b/interface/js/app/history.js @@ -31,8 +31,10 @@ function($, _, Humanize) { '<': '<', '>': '>', '"': '"', - "'": ''', - '/': '/' + "'": ''', + '/': '/', + '`': '`', + '=': '=' }; var htmlEscaper = /[&<>"'\/]/g;