From: André Peters Date: Sun, 9 Jul 2017 16:30:01 +0000 (+0200) Subject: More htmlEscapes. X-Git-Tag: 1.6.3~3^2~7 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=02bbcf22304848bf651ca80dff57b45b096ab454;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;