]> git.ipfire.org Git - thirdparty/rspamd.git/commitdiff
More htmlEscapes.
authorAndré Peters <andryyy@users.noreply.github.com>
Sun, 9 Jul 2017 16:30:01 +0000 (18:30 +0200)
committerAndrew Lewis <nerf@judo.za.org>
Tue, 11 Jul 2017 09:16:31 +0000 (11:16 +0200)
interface/js/app/history.js

index f23d8db83576cb7db0b695695050759a08db45be..378c3cf7b1c90bf3f726066f8d0a1fe7577e4ce1 100644 (file)
@@ -31,8 +31,10 @@ function($, _, Humanize) {
       '<': '&lt;',
       '>': '&gt;',
       '"': '&quot;',
-      "'": '&#x27;',
-      '/': '&#x2F;'
+      "'": '&#39;',
+      '/': '&#x2F;',
+      '`': '&#x60;',
+      '=': '&#x3D;'
     };
     var htmlEscaper = /[&<>"'\/]/g;