diff options
author | hugo <hugo@localhost> | 2000-01-13 17:32:21 +0000 |
---|---|---|
committer | hugo <hugo@localhost> | 2000-01-13 17:32:21 +0000 |
commit | c9fb83081218580f76e910c8c8ae43af0de76360 (patch) | |
tree | 870f894f80a41a44db99824d4de3b62a3077c051 /httpd/cgi-bin/LinkChecker.pl | |
parent | 15eaeb78b7a96f9842676435ca6eb17e92cb21be (diff) | |
download | markup-validator-c9fb83081218580f76e910c8c8ae43af0de76360.zip markup-validator-c9fb83081218580f76e910c8c8ae43af0de76360.tar.gz markup-validator-c9fb83081218580f76e910c8c8ae43af0de76360.tar.bz2 |
CVS messed up a regular expression... fixed
Diffstat (limited to 'httpd/cgi-bin/LinkChecker.pl')
-rwxr-xr-x | httpd/cgi-bin/LinkChecker.pl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/httpd/cgi-bin/LinkChecker.pl b/httpd/cgi-bin/LinkChecker.pl index 8b85406..734db56 100755 --- a/httpd/cgi-bin/LinkChecker.pl +++ b/httpd/cgi-bin/LinkChecker.pl @@ -5,7 +5,7 @@ # (c) 1999 World Wide Web Consortium # based on Renaud Bruyeron's checklin.pl # -# $Id: LinkChecker.pl,v 1.3 1999-12-01 19:47:34 hugo Exp $ +# $Id: LinkChecker.pl,v 1.4 1999-12-01 19:53:17 hugo Exp $ # # This program is licensed under the W3C License. @@ -21,8 +21,8 @@ $| = 1; # Version info my $PROGRAM = 'W3C LinkChecker'; -my $VERSION = '$Revision: 1.3 $ (c) 1999 W3C'; -my $REVISION; ($REVISION = $VERSION) =~ s/^\$Revision: 1.3 $1/; +my $VERSION = '$Revision: 1.4 $ (c) 1999 W3C'; +my $REVISION; ($REVISION = $VERSION) =~ s/Revision: (\d+\.\d+) .*/$1/; # State of the program my $_cl; |