summaryrefslogtreecommitdiff
path: root/misc/progress.js
diff options
context:
space:
mode:
Diffstat (limited to 'misc/progress.js')
-rw-r--r--misc/progress.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/misc/progress.js b/misc/progress.js
index cc029e5b5..b519f066b 100644
--- a/misc/progress.js
+++ b/misc/progress.js
@@ -107,7 +107,7 @@ progressBar.prototype.receivePing = function (string, xmlhttp, pb) {
progressBar.prototype.displayError = function (string) {
var error = document.createElement('div');
error.className = 'error';
- error.appendChild(document.createTextNode(string));
+ error.innerHTML = string;
this.element.style.display = 'none';
this.element.parentNode.insertBefore(error, this.element);