diff options
Diffstat (limited to 'program/js/app.js')
-rw-r--r-- | program/js/app.js | 2 |
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"> </span>'; + else if (/multipart\/report/.test(flags.ctype)) + html = '<span class="report"> </span>'; else html = ' '; } |