Hi, 

 Here is a 2 lines patch to fix HTML code in folder.c. <TR> and <TD>
are not closed in the right order in a table.

% diff -u sqwebmail/folder.c.orig sqwebmail/folder.c
--- sqwebmail/folder.c.orig     Fri Jan 26 15:20:09 2001
+++ sqwebmail/folder.c  Fri Jan 26 15:20:37 2001
@@ -1442,8 +1442,8 @@
                showattname(msg_downattachment, dummy, content_type);
                printf("</A></CENTER>");
        }
-       printf("</TR></TD></TABLE>\n");
-       printf("</TR></TD></TABLE>\n");
+       printf("</TD></TR></TABLE>\n");
+       printf("</TD></TR></TABLE>\n");
 }
 
 static void showattname(const char *fmt, const char *name,

Reply via email to