aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Moisseev <moiseev@mezonplus.ru>2018-07-05 10:44:04 +0300
committerAlexander Moisseev <moiseev@mezonplus.ru>2018-07-05 10:44:04 +0300
commit1bdf819be0306f9f5a1aabce81fc75b78619d0ca (patch)
treee778448b0730df742810d82c096bb68584ded350
parent6ad2458e0806c3a17b25ca8ce2549697f8d3727e (diff)
downloadrspamd-1bdf819be0306f9f5a1aabce81fc75b78619d0ca.tar.gz
rspamd-1bdf819be0306f9f5a1aabce81fc75b78619d0ca.zip
[Minor] JS: Remove useless escape
-rw-r--r--interface/js/app/history.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/interface/js/app/history.js b/interface/js/app/history.js
index e11ec7dca..2c4d87b03 100644
--- a/interface/js/app/history.js
+++ b/interface/js/app/history.js
@@ -36,7 +36,7 @@ define(["jquery", "footable", "humanize"],
"`": "&#x60;",
"=": "&#x3D;"
};
- var htmlEscaper = /[&<>"'\/`=]/g;
+ var htmlEscaper = /[&<>"'/`=]/g;
var symbolDescriptions = {};
EscapeHTML = function(string) {