]> source.dussan.org Git - rspamd.git/commitdiff
More htmlEscapes. 1739/head
authorAndré Peters <andryyy@users.noreply.github.com>
Sun, 9 Jul 2017 16:30:01 +0000 (18:30 +0200)
committerGitHub <noreply@github.com>
Sun, 9 Jul 2017 16:30:01 +0000 (18:30 +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;