diff options
author | Nick Sukharev <nick@galaktika.ru> | 2006-09-30 01:56:45 +0800 |
---|---|---|
committer | Andre Klapper <aklapper@src.gnome.org> | 2006-09-30 01:56:45 +0800 |
commit | 3a49f0f1e4e4a89ef6c5ad42090fe89d37c319ad (patch) | |
tree | ad130e005a9f53c6f356cdd2dd66ed6a4705e2d5 /mail/em-format-html.c | |
parent | a9d678a9d5470bdd12089df0a59d3b309ea57cd8 (diff) | |
download | gsoc2013-evolution-3a49f0f1e4e4a89ef6c5ad42090fe89d37c319ad.tar.gz gsoc2013-evolution-3a49f0f1e4e4a89ef6c5ad42090fe89d37c319ad.tar.zst gsoc2013-evolution-3a49f0f1e4e4a89ef6c5ad42090fe89d37c319ad.zip |
UUEncoded calendars will be displayed as calendars, not as plain text.
2006-09-29 Nick Sukharev <nick@galaktika.ru>
* mail/em-format-html.c: UUEncoded calendars will be displayed as
calendars, not as plain text. Fixes bug #352767.
(committed by Andre Klapper)
svn path=/trunk/; revision=32832
Diffstat (limited to 'mail/em-format-html.c')
-rw-r--r-- | mail/em-format-html.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mail/em-format-html.c b/mail/em-format-html.c index 07050b31e5..8c0cb16e97 100644 --- a/mail/em-format-html.c +++ b/mail/em-format-html.c @@ -762,7 +762,7 @@ efh_text_plain(EMFormatHTML *efh, CamelStream *stream, CamelMimePart *part, EMFo CamelMimePart *newpart = camel_multipart_get_part(mp, i); type = camel_mime_part_get_content_type(newpart); - if (camel_content_type_is (type, "text", "*")) { + if (camel_content_type_is (type, "text", "*") && !camel_content_type_is(type, "text", "calendar")) { camel_stream_printf (stream, "<div style=\"border: solid #%06x 1px; background-color: #%06x; padding: 10px;\">\n", efh->frame_colour & 0xffffff, efh->content_colour & 0xffffff); |