diff options
author | ville <ville@localhost> | 2003-01-03 20:21:56 +0000 |
---|---|---|
committer | ville <ville@localhost> | 2003-01-03 20:21:56 +0000 |
commit | b24f1f6478c268444d4ce436fb3ba81bc32a4c86 (patch) | |
tree | 21650e297e519532cd4229106a9d446f719b52e2 /httpd/cgi-bin | |
parent | 8e051c9965417302417a4da1a8eebffd6fcb08ec (diff) | |
download | markup-validator-b24f1f6478c268444d4ce436fb3ba81bc32a4c86.zip markup-validator-b24f1f6478c268444d4ce436fb3ba81bc32a4c86.tar.gz markup-validator-b24f1f6478c268444d4ce436fb3ba81bc32a4c86.tar.bz2 |
Applying patches from Dave Evans (with minor tweaks).
See <http://lists.w3.org/Archives/Public/www-validator/2003Jan/0005.html>
Diffstat (limited to 'httpd/cgi-bin')
-rwxr-xr-x | httpd/cgi-bin/check | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/httpd/cgi-bin/check b/httpd/cgi-bin/check index e1a2a35..aa9d0cf 100755 --- a/httpd/cgi-bin/check +++ b/httpd/cgi-bin/check @@ -9,7 +9,7 @@ # This source code is available under the license at: # http://www.w3.org/Consortium/Legal/copyright-software # -# $Id: check,v 1.320 2002-12-08 17:51:46 ville Exp $ +# $Id: check,v 1.321 2003-01-03 20:21:55 ville Exp $ # # Disable buffering on STDOUT! @@ -144,7 +144,7 @@ The error reported was: '$@' # # Strings - $VERSION = q$Revision: 1.320 $; + $VERSION = q$Revision: 1.321 $; $VERSION =~ s/Revision: ([\d\.]+) /$1/; } # end of BEGIN block. @@ -732,6 +732,7 @@ sub prep_template ($$) { $T->param(opt_show_parsetree => $File->{Opt}->{'Show Parsetree'}); $T->param(opt_show_noatt => $File->{Opt}->{'No Attributes'}); $T->param(opt_verbose => $File->{Opt}->{'Verbose'}); + $T->param(opt_no200 => $File->{Opt}->{'No200'}); # # Tip of the Day... |