aboutsummaryrefslogtreecommitdiffstats
path: root/interface
diff options
context:
space:
mode:
authorAndré Peters <andryyy@users.noreply.github.com>2017-07-09 18:30:01 +0200
committerGitHub <noreply@github.com>2017-07-09 18:30:01 +0200
commit32b9279009725717082f2ca03e4b1977410188df (patch)
tree34f4c7a8f04b8b541c9f664f37ff3db2c6c194f7 /interface
parentcad34f0bc509ab40b67d3486194786c89550c7ff (diff)
downloadrspamd-32b9279009725717082f2ca03e4b1977410188df.tar.gz
rspamd-32b9279009725717082f2ca03e4b1977410188df.zip
More htmlEscapes.
Diffstat (limited to 'interface')
-rw-r--r--interface/js/app/history.js6
1 files changed, 4 insertions, 2 deletions
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) {
'<': '&lt;',
'>': '&gt;',
'"': '&quot;',
- "'": '&#x27;',
- '/': '&#x2F;'
+ "'": '&#39;',
+ '/': '&#x2F;',
+ '`': '&#x60;',
+ '=': '&#x3D;'
};
var htmlEscaper = /[&<>"'\/]/g;