diff options
author | gerald <gerald@localhost> | 2000-10-21 11:40:45 +0000 |
---|---|---|
committer | gerald <gerald@localhost> | 2000-10-21 11:40:45 +0000 |
commit | 862f2f5b0ee32b31209a44dfbd381edef843af91 (patch) | |
tree | 338ff3bb4bc49c3875ae85f0d1a1b6517c4a68af | |
parent | f65f637c4fc30281204bdb43c1a2d12de6659437 (diff) | |
download | markup-validator-862f2f5b0ee32b31209a44dfbd381edef843af91.zip markup-validator-862f2f5b0ee32b31209a44dfbd381edef843af91.tar.gz markup-validator-862f2f5b0ee32b31209a44dfbd381edef843af91.tar.bz2 |
fix for ALT text in headings in outlines in XHTML documents
http://lists.w3.org/Archives/Public/www-validator/2000JulSep/0110.html
-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 c1e0a95..69716ed 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.73 2000-10-21 10:35:01 gerald Exp $ +# $Id: check,v 1.74 2000-10-21 11:40:45 gerald Exp $ # # We need Perl 5.004. @@ -71,9 +71,9 @@ my $element_ref = 'http://www.htmlhelp.com/reference/html40/'; # # Strings -$VERSION = q$Revision: 1.73 $; +$VERSION = q$Revision: 1.74 $; $VERSION =~ s/Revision: ([\d\.]+) /$1/; -$DATE = q$Date: 2000-10-21 10:35:01 $; +$DATE = q$Date: 2000-10-21 11:40:45 $; $MAINTAINER = 'gerald@w3.org'; my $notice = ''; # "<p><strong>Note: This service will be ...</strong>"; @@ -850,7 +850,7 @@ EOF substr($headcont, 0, 1) = " "; $headcont =~ s/\\n/ /g; $heading .= $headcont; - } elsif ($line =~ /^AALT CDATA( .+)/) { + } elsif ($line =~ /^AALT CDATA( .+)/i) { my $headcont = $1; $headcont =~ s/\\n/ /g; $heading .= $headcont; |