diff options
author | Aleksander Machniak <alec@alec.pl> | 2012-06-13 12:14:42 +0200 |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2012-06-13 12:14:42 +0200 |
commit | 21be27273c6fb74456b187018dc2584a4514a502 (patch) | |
tree | 0b16d93aad5bb295f488daafbfa874b590a278a5 /program/js | |
parent | 7456c27b47937d05fee84881e50dec66853975fa (diff) | |
parent | 64584be909914b8eb3fa0e1e8681b6883ba25244 (diff) |
Merge branch 'release-0.8' of github.com:roundcube/roundcubemail into release-0.8
Conflicts:
CHANGELOG
Diffstat (limited to 'program/js')
-rw-r--r-- | program/js/app.js | 2 |
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+'"> </span>'; } else if (c == 'attachment') { - if (/application\/|multipart\/m/.test(flags.ctype)) + if (/application\/|multipart\/(m|signed)/.test(flags.ctype)) html = '<span class="attachment"> </span>'; else if (/multipart\/report/.test(flags.ctype)) html = '<span class="report"> </span>'; |