diff options
author | John McLear <john@mclear.co.uk> | 2014-10-06 14:18:54 +0100 |
---|---|---|
committer | John McLear <john@mclear.co.uk> | 2014-10-06 14:18:54 +0100 |
commit | f0c12d38845a46085e96b101b47c43116da039cf (patch) | |
tree | f0825833dabfef637da14ab8ce4a1a1666ff2b69 | |
parent | 64c89613a133f415d9dd4cac35bf1ab693940a91 (diff) | |
download | etherpad-lite-f0c12d38845a46085e96b101b47c43116da039cf.zip |
escape useragent before displaying
-rw-r--r-- | src/static/js/pad_utils.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/static/js/pad_utils.js b/src/static/js/pad_utils.js index bab6aa43..bcfa95cc 100644 --- a/src/static/js/pad_utils.js +++ b/src/static/js/pad_utils.js @@ -520,7 +520,7 @@ function setupGlobalExceptionHandler() { $("#editorloadingbox").css("padding", "10px"); $("#editorloadingbox").css("padding-top", "45px"); $("#editorloadingbox").html("<div style='text-align:left;color:red;font-size:16px;'><b>An error occured</b><br>The error was reported with the following id: '" + errorId + "'<br><br><span style='color:black;font-weight:bold;font-size:16px'>Please press and hold Ctrl and press F5 to reload this page, if the problem persists please send this error message to your webmaster: </span><div style='color:black;font-size:14px'>'" - + "ErrorId: " + errorId + "<br>URL: " + window.location.href + "<br>UserAgent: " + navigator.userAgent + "<br>" + msg + " in " + url + " at line " + linenumber + "'</div></div>"); + + "ErrorId: " + errorId + "<br>URL: " + window.location.href + "<br>UserAgent: " + padutils.escapeHtml(navigator.userAgent) + "<br>" + msg + " in " + url + " at line " + linenumber + "'</div></div>"); } //send javascript errors to the server |