diff options
author | André Peters <andryyy@users.noreply.github.com> | 2017-07-09 18:30:01 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-07-09 18:30:01 +0200 |
commit | 32b9279009725717082f2ca03e4b1977410188df (patch) | |
tree | 34f4c7a8f04b8b541c9f664f37ff3db2c6c194f7 /interface | |
parent | cad34f0bc509ab40b67d3486194786c89550c7ff (diff) | |
download | rspamd-32b9279009725717082f2ca03e4b1977410188df.tar.gz rspamd-32b9279009725717082f2ca03e4b1977410188df.zip |
More htmlEscapes.
Diffstat (limited to 'interface')
-rw-r--r-- | interface/js/app/history.js | 6 |
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) { '<': '<', '>': '>', '"': '"', - "'": ''', - '/': '/' + "'": ''', + '/': '/', + '`': '`', + '=': '=' }; var htmlEscaper = /[&<>"'\/]/g; |