From 2bb038ba70f1320672ee15086f5d76b08c8ea10e Mon Sep 17 00:00:00 2001 From: Not Zed Date: Mon, 12 Jan 2004 00:21:18 +0000 Subject: ** See bug 52737. 2004-01-12 Not Zed ** See bug 52737. * em-format-html.c (efh_text_plain): treat text/* as inline content from the made-up multipart. svn path=/trunk/; revision=24159 --- mail/ChangeLog | 7 +++++++ mail/em-format-html.c | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/mail/ChangeLog b/mail/ChangeLog index ae58656df8..ea373a045e 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -1,3 +1,10 @@ +2004-01-12 Not Zed + + ** See bug 52737. + + * em-format-html.c (efh_text_plain): treat text/* as inline + content from the made-up multipart. + 2004-01-09 Not Zed ** See bug 52696. diff --git a/mail/em-format-html.c b/mail/em-format-html.c index 47d23c9146..236492eb17 100644 --- a/mail/em-format-html.c +++ b/mail/em-format-html.c @@ -720,7 +720,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", "plain")) { + if (camel_content_type_is (type, "text", "*")) { camel_stream_write_string(stream, "\n"); em_format_format_text((EMFormat *)efh, (CamelStream *)filtered_stream, camel_medium_get_content_object((CamelMedium *)newpart)); camel_stream_flush((CamelStream *)filtered_stream); -- cgit v1.2.3