From: Art Cancro Date: Tue, 3 Jul 2007 15:10:38 +0000 (+0000) Subject: In the main readloop(), fixed a that appeared X-Git-Tag: v7.86~3273 X-Git-Url: https://code.citadel.org/?a=commitdiff_plain;h=a648090befbd508f01cc6091e5ad962e6ca38ee6;p=citadel.git In the main readloop(), fixed a that appeared *after* the call to wDumpContent(), which was causing blank screens on IE6 --- diff --git a/webcit/messages.c b/webcit/messages.c index ec460d498..27bccfa61 100644 --- a/webcit/messages.c +++ b/webcit/messages.c @@ -2603,8 +2603,8 @@ DONE: } /** Note: wDumpContent() will output one additional tag. */ + wprintf("\n"); /** end of 'content' div */ wDumpContent(1); - if (addrbook != NULL) free(addrbook); /** free the summary */ if (WC->summ != NULL) { @@ -2612,7 +2612,7 @@ DONE: WC->num_summ = 0; WC->summ = NULL; } -wprintf("\n"); /** end of 'content' div */ + if (addrbook != NULL) free(addrbook); }