aboutsummaryrefslogtreecommitdiffstats
path: root/mail/mail-format.c
diff options
context:
space:
mode:
authorDan Winship <danw@src.gnome.org>2001-06-16 00:55:10 +0800
committerDan Winship <danw@src.gnome.org>2001-06-16 00:55:10 +0800
commitb461c51f7c9c42d5933572a7c565462c252760c9 (patch)
tree0207b7cc1754b74b2c8cb6882291bb24e0d91897 /mail/mail-format.c
parentad95c6e7b205cabbed6e2ede170f6da02e8521d7 (diff)
downloadgsoc2013-evolution-b461c51f7c9c42d5933572a7c565462c252760c9.tar
gsoc2013-evolution-b461c51f7c9c42d5933572a7c565462c252760c9.tar.gz
gsoc2013-evolution-b461c51f7c9c42d5933572a7c565462c252760c9.tar.bz2
gsoc2013-evolution-b461c51f7c9c42d5933572a7c565462c252760c9.tar.lz
gsoc2013-evolution-b461c51f7c9c42d5933572a7c565462c252760c9.tar.xz
gsoc2013-evolution-b461c51f7c9c42d5933572a7c565462c252760c9.tar.zst
gsoc2013-evolution-b461c51f7c9c42d5933572a7c565462c252760c9.zip
We can't output "<html>" and "</html>" here because it gets called
* mail-format.c (mail_format_mime_message): We can't output "<html>" and "</html>" here because it gets called recursively to display message/rfc822 subparts. * mail-display.c (mail_display_redisplay): Move rodo's html header changes from mail_format_mime_message to here. svn path=/trunk/; revision=10252
Diffstat (limited to 'mail/mail-format.c')
-rw-r--r--mail/mail-format.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/mail/mail-format.c b/mail/mail-format.c
index a4e3f80fd8..c195579e9a 100644
--- a/mail/mail-format.c
+++ b/mail/mail-format.c
@@ -169,10 +169,8 @@ mail_format_mime_message (CamelMimeMessage *mime_message, MailDisplay *md)
free_data_urls);
}
- mail_html_write (md->html, md->stream, "<html>\n<body marginwidth=0 marginheight=0>\n");
write_headers (mime_message, md);
format_mime_part (CAMEL_MIME_PART (mime_message), md);
- mail_html_write (md->html, md->stream, "</body>\n</html>\n");
}