diff options
author | gerald <gerald@localhost> | 1999-09-10 22:39:06 +0000 |
---|---|---|
committer | gerald <gerald@localhost> | 1999-09-10 22:39:06 +0000 |
commit | 565246e30953a9e062b600fc7905988e5682c55b (patch) | |
tree | 881cd3c66c55a82cd68e746cf1740fc8ea195898 | |
parent | 4adc953efcc47773406da2d818994393eff20459 (diff) | |
download | markup-validator-565246e30953a9e062b600fc7905988e5682c55b.zip markup-validator-565246e30953a9e062b600fc7905988e5682c55b.tar.gz markup-validator-565246e30953a9e062b600fc7905988e5682c55b.tar.bz2 |
fixed bug in XHTML outlines, thanks to Terje Bless for the patch
see also:
http://lists.w3.org/Archives/Public/www-validator/1999JulSep/0109
-rwxr-xr-x | httpd/cgi-bin/check | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/httpd/cgi-bin/check b/httpd/cgi-bin/check index 6f18aee..602da95 100755 --- a/httpd/cgi-bin/check +++ b/httpd/cgi-bin/check @@ -8,7 +8,7 @@ # This source code is available under the license at: # http://www.w3.org/Consortium/Legal/copyright-software # -# $Id: check,v 1.31 1999-09-06 04:58:00 gerald Exp $ +# $Id: check,v 1.32 1999-09-10 22:39:06 gerald Exp $ use LWP::UserAgent; use strict; @@ -17,8 +17,8 @@ use strict; # Constant definitions ############################################################################# -my $cvsrevision = '$Revision: 1.31 $'; -my $cvsdate = '$Date: 1999-09-06 04:58:00 $'; +my $cvsrevision = '$Revision: 1.32 $'; +my $cvsdate = '$Date: 1999-09-10 22:39:06 $'; my $logfile = "/var/log/httpd/val-svc"; @@ -830,7 +830,7 @@ EOF next if / IMPLIED$/; next if /^ASDAFORM CDATA /; next if /^ASDAPREF CDATA /; - next unless $line =~ /^\(H[1-6]$/; + next unless $line =~ /^\(H[1-6]$/i; $prevlevel = $level; $level = substr( $line, 2, 1 ); |