summaryrefslogtreecommitdiff
path: root/program/js/app.js
diff options
context:
space:
mode:
authorAleksander Machniak <alec@alec.pl>2013-06-04 09:08:30 +0200
committerAleksander Machniak <alec@alec.pl>2013-06-04 09:08:30 +0200
commit9749da9fcc149266323df7dd2b8fb9406e37ca1b (patch)
tree895c2a1ebe1de704f8d06a6e52400b7bdca12e47 /program/js/app.js
parentabe798d9059d1ad3a29e61a8708cb084d8985898 (diff)
Fix possible wrong null assignment to innerHTML on IE10 (#1489145)
Diffstat (limited to 'program/js/app.js')
-rw-r--r--program/js/app.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/program/js/app.js b/program/js/app.js
index dbd171d30..d691c9228 100644
--- a/program/js/app.js
+++ b/program/js/app.js
@@ -5805,7 +5805,7 @@ function rcube_webmail()
for (c=0, len=repl.length; c < len; c++) {
cell = document.createElement('td');
- cell.innerHTML = repl[c].html;
+ cell.innerHTML = repl[c].html || '';
if (repl[c].id) cell.id = repl[c].id;
if (repl[c].className) cell.className = repl[c].className;
tr.appendChild(cell);