From ee1530ae42ff3760c3b7cdea40b123607d704383 Mon Sep 17 00:00:00 2001 From: Thierry Pasqualier Date: Tue, 6 Nov 2007 09:12:02 +0000 Subject: [PATCH] Changed this initialisation line 142 ptr = msg ; to ptr = msg + 1; seems to fix the body bug. We have to test it. It is possible that the dysfunctions of the messages displays of Firefox and IE result from this useless body tag. --- webcit/html2html.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webcit/html2html.c b/webcit/html2html.c index b15455b67..f96c23908 100644 --- a/webcit/html2html.c +++ b/webcit/html2html.c @@ -139,7 +139,7 @@ void output_html(char *supplied_charset, int treat_as_wiki) { } /** Do a first pass to isolate the message body */ - ptr = msg; + ptr = msg + 1; msgstart = msg; msgend = &msg[content_length]; -- 2.30.2