diff options
Diffstat (limited to 'misc/progress.js')
-rw-r--r-- | misc/progress.js | 2 |
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); |