Merge pull request #817 from univention/master

Remove double unescaping of title
This commit is contained in:
Samuel Mannehed 2017-05-03 13:57:23 +02:00 committed by GitHub
commit 1c5702b0b5
1 changed files with 1 additions and 1 deletions

View File

@ -206,7 +206,7 @@
document.getElementById('xvpResetButton').onclick = xvpReset;
WebUtil.init_logging(WebUtil.getConfigVar('logging', 'warn'));
document.title = unescape(WebUtil.getConfigVar('title', 'noVNC'));
document.title = WebUtil.getConfigVar('title', 'noVNC');
// By default, use the host and port of server that served this file
var host = WebUtil.getConfigVar('host', window.location.hostname);
var port = WebUtil.getConfigVar('port', window.location.port);