diff options
author | link <link@localhost> | 2001-07-24 09:03:01 +0000 |
---|---|---|
committer | link <link@localhost> | 2001-07-24 09:03:01 +0000 |
commit | c09e90bc1464d3eb15fb403982063e89a909bb28 (patch) | |
tree | 04061c8683c240592b98ca9931574fc7368a9f1f | |
parent | 02eb7d81474773737a2842e897fade48f0072b78 (diff) | |
download | markup-validator-c09e90bc1464d3eb15fb403982063e89a909bb28.zip markup-validator-c09e90bc1464d3eb15fb403982063e89a909bb28.tar.gz markup-validator-c09e90bc1464d3eb15fb403982063e89a909bb28.tar.bz2 |
Fix minor glitch in Show Source iff Errors code (s/./,/).
-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 19d63e9..1de58bc 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.158 2001-07-22 19:33:16 link Exp $ +# $Id: check,v 1.159 2001-07-24 09:03:01 link Exp $ # # We need Perl 5.004. @@ -80,9 +80,9 @@ my $element_ref = 'http://www.htmlhelp.com/reference/html40/'; # # Strings -$VERSION = q$Revision: 1.158 $; +$VERSION = q$Revision: 1.159 $; $VERSION =~ s/Revision: ([\d\.]+) /$1/; -$DATE = q$Date: 2001-07-22 19:33:16 $; +$DATE = q$Date: 2001-07-24 09:03:01 $; $MAINTAINER = 'gerald@w3.org'; $NOTICE = ''; # "<p><strong>Note: This service will be ...</strong>"; @@ -584,7 +584,7 @@ EOHD } if (scalar @{$File->{Errors}}) { - $q->param('ss'. TRUE); + $q->param('ss', TRUE); &report_errors($File) } else { &report_valid($File) |