summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAleksander Machniak <alec@alec.pl>2012-06-09 20:20:59 +0200
committerAleksander Machniak <alec@alec.pl>2012-06-09 20:22:28 +0200
commit9e43252f8c93091ae61496e89fd2bedfc9564993 (patch)
treec665887726f3a1a321f1e09eff5b0389686d5152
parent505f6e5b428222f97f80c1d9d325d9ca34c14361 (diff)
Display attachment icon for multipart/signed messages (#1488525)
-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 584efdd18..8d02f6f39 100644
--- a/program/js/app.js
+++ b/program/js/app.js
@@ -1815,7 +1815,7 @@ function rcube_webmail()
html = '<span id="flagicn'+uid+'" class="'+css_class+'">&nbsp;</span>';
}
else if (c == 'attachment') {
- if (/application\/|multipart\/m/.test(flags.ctype))
+ if (/application\/|multipart\/(m|signed)/.test(flags.ctype))
html = '<span class="attachment">&nbsp;</span>';
else if (/multipart\/report/.test(flags.ctype))
html = '<span class="report">&nbsp;</span>';