1 message in net.sourceforge.lists.courier-sqwebmail[sqwebmail] XHTML validation: "Messag...
FromSent OnAttachments
Pawel TeczaJul 20, 2006 6:43 am 
Actions with this message:
Paste this link in email or IM:
Paste this link in email or IM:
Atom feed for this thread
Paste this URL into your reader:
Subject:[sqwebmail] XHTML validation: "Message" pageActions...
From:Pawel Tecza (p.te@net.icm.edu.pl)
Date:Jul 20, 2006 6:43:55 am
List:net.sourceforge.lists.courier-sqwebmail

Hi again :D

It seems that you forgot to close <span> tag which is wrapper for linked e-mail address in From:, To: and Cc: headers. This is a small patch:

Index: webmail/folder.c =================================================================== RCS file: /cvsroot/courier/courier/webmail/folder.c,v retrieving revision 1.169 diff -u -r1.169 folder.c --- webmail/folder.c 7 Jul 2006 23:17:18 -0000 1.169 +++ webmail/folder.c 20 Jul 2006 13:32:11 -0000 @@ -2033,7 +2033,7 @@ printf("</span>");

printf("%s", - is_preview_mode() ? "":"</a>"); + is_preview_mode() ? "":"</a></span>");

if (sai) {

I've also noticed empty <span class="message-rfc822-header-contents"></span> tag after the last e-mail address there, but I haven't idea how to fix it.

Have a nice day,