From 32b9279009725717082f2ca03e4b1977410188df Mon Sep 17 00:00:00 2001 From: =?utf8?q?Andr=C3=A9=20Peters?= Date: Sun, 9 Jul 2017 18:30:01 +0200 Subject: [PATCH] More htmlEscapes. --- interface/js/app/history.js | 6 ++++-- 1 file 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; -- 2.39.5