diff options
author | gerald <gerald@localhost> | 1999-09-17 08:52:54 +0000 |
---|---|---|
committer | gerald <gerald@localhost> | 1999-09-17 08:52:54 +0000 |
commit | bf7695b4566ceff9d44300d2a6ac21b8967d299d (patch) | |
tree | b6aab3cb741eea63830b97299e3b143c0f1ba46e | |
parent | 58493e12f40d69a6f0468146c956c96e509de7fa (diff) | |
download | markup-validator-bf7695b4566ceff9d44300d2a6ac21b8967d299d.zip markup-validator-bf7695b4566ceff9d44300d2a6ac21b8967d299d.tar.gz markup-validator-bf7695b4566ceff9d44300d2a6ac21b8967d299d.tar.bz2 |
made it suppress the border=0 for the code snippet given for
successful HTML 4.0/4.01 Strict validations (a bug introduced by
a recent commit)
-rwxr-xr-x | httpd/cgi-bin/check | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/httpd/cgi-bin/check b/httpd/cgi-bin/check index b9b7b27..99a6c34 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.33 1999-09-10 22:56:39 gerald Exp $ +# $Id: check,v 1.34 1999-09-17 08:52:54 gerald Exp $ use LWP::UserAgent; use strict; @@ -17,8 +17,8 @@ use strict; # Constant definitions ############################################################################# -my $cvsrevision = '$Revision: 1.33 $'; -my $cvsdate = '$Date: 1999-09-10 22:56:39 $'; +my $cvsrevision = '$Revision: 1.34 $'; +my $cvsdate = '$Date: 1999-09-17 08:52:54 $'; my $logfile = "/var/log/httpd/val-svc"; @@ -660,7 +660,7 @@ else { $alttext = "Valid HTML 3.2!"; $gifhw = " height=31 width=88"; } - elsif ( $version =~ /HTML 4\.0<\/a>$/ ) { + elsif ( $version =~ /HTML 4\.0<\/a> Strict$/ ) { $gifname = "vh40.gif"; $alttext = "Valid HTML 4.0!"; $gifborder = ""; @@ -671,7 +671,7 @@ else { $alttext = "Valid HTML 4.0!"; $gifhw = " height=31 width=88"; } - elsif ( $version =~ /HTML 4\.01<\/a>$/ ) { + elsif ( $version =~ /HTML 4\.01<\/a> Strict$/ ) { $gifname = "vh40.gif"; $alttext = "Valid HTML 4.01!"; $gifborder = ""; |