summaryrefslogtreecommitdiff
path: root/program/js
diff options
context:
space:
mode:
authoralecpl <alec@alec.pl>2010-10-08 10:18:32 +0000
committeralecpl <alec@alec.pl>2010-10-08 10:18:32 +0000
commit32c657ae1f188f2f01261f6c1453e73f75c1de76 (patch)
treefb58ed3e26195c662cfa0a5f06e2d08487d5c637 /program/js
parent6b4929278b757f41e0572e2d42982772542e4882 (diff)
- Add (different) attachment icon for messages of type multipart/report (#1486165)
Diffstat (limited to 'program/js')
-rw-r--r--program/js/app.js2
1 files changed, 2 insertions, 0 deletions
diff --git a/program/js/app.js b/program/js/app.js
index 618e07404..b4d980742 100644
--- a/program/js/app.js
+++ b/program/js/app.js
@@ -1661,6 +1661,8 @@ function rcube_webmail()
else if (c == 'attachment') {
if (/application\/|multipart\/m/.test(flags.ctype))
html = '<span class="attachment">&nbsp;</span>';
+ else if (/multipart\/report/.test(flags.ctype))
+ html = '<span class="report">&nbsp;</span>';
else
html = '&nbsp;';
}