From: Thierry Pasqualier Date: Tue, 6 Nov 2007 09:12:02 +0000 (+0000) Subject: Changed this initialisation line 142 X-Git-Tag: v7.86~2836 X-Git-Url: https://code.citadel.org/?p=citadel.git;a=commitdiff_plain;h=ee1530ae42ff3760c3b7cdea40b123607d704383 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. --- 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];