- From: Olivier Thereaux via cvs-syncmail <cvsmail@w3.org>
- Date: Thu, 28 Jun 2007 10:53:29 +0000
- To: www-validator-cvs@w3.org
Update of /sources/public/validator/httpd/cgi-bin
In directory hutz:/tmp/cvs-serv15586/httpd/cgi-bin
Modified Files:
check
Log Message:
* we were passing some fake debug info to the warning for parse mode fallback
(should not have made it to CVS, my mistake)
* fixing info about doctype passed to parse mode fallback warning
Index: check
===================================================================
RCS file: /sources/public/validator/httpd/cgi-bin/check,v
retrieving revision 1.532
retrieving revision 1.533
diff -u -d -r1.532 -r1.533
--- check 28 Jun 2007 10:03:12 -0000 1.532
+++ check 28 Jun 2007 10:53:26 -0000 1.533
@@ -1963,8 +1963,8 @@
$File->{ModeChoice} = 'Fallback';
# and send warning about the fallback
&add_warning('W06', {
- W06_mime => $begincontent, #$File->{ContentType},
- w06_doctype => $File->{Version}
+ W06_mime => $File->{ContentType},
+ w06_doctype => $File->{DOCTYPE}
});
return;
}
Received on Thursday, 28 June 2007 10:53:31 UTC