** See bug 52737.

2004-01-12  Not Zed  <NotZed@Ximian.com>

        ** 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
This commit is contained in:
Not Zed
2004-01-12 00:21:18 +00:00
committed by Michael Zucci
parent 8324d0e39d
commit 2bb038ba70
2 changed files with 8 additions and 1 deletions

View File

@ -1,3 +1,10 @@
2004-01-12 Not Zed <NotZed@Ximian.com>
** 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 <NotZed@Ximian.com>
** See bug 52696.

View File

@ -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, "<tt>\n");
em_format_format_text((EMFormat *)efh, (CamelStream *)filtered_stream, camel_medium_get_content_object((CamelMedium *)newpart));
camel_stream_flush((CamelStream *)filtered_stream);