diff options
author | link <link@localhost> | 2002-03-02 00:28:34 +0000 |
---|---|---|
committer | link <link@localhost> | 2002-03-02 00:28:34 +0000 |
commit | 3bc888861e61b0c4ce8389dcc115fe6f4b158d78 (patch) | |
tree | 723f839680f07019502e532f1f641af249870a3f | |
parent | 7b267b04ab1179e4caead5c8cc4a5660c523ca66 (diff) | |
download | markup-validator-3bc888861e61b0c4ce8389dcc115fe6f4b158d78.zip markup-validator-3bc888861e61b0c4ce8389dcc115fe6f4b158d78.tar.gz markup-validator-3bc888861e61b0c4ce8389dcc115fe6f4b158d78.tar.bz2 |
Moved perl from /usr/local/bin to /usr/bin. :-)
-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 9d3f556..7ef1b8c 100755 --- a/httpd/cgi-bin/check +++ b/httpd/cgi-bin/check @@ -1,4 +1,4 @@ -#!/usr/local/bin/perl -w +#!/usr/bin/perl -w # # W3C HTML Validation Service # A CGI script to retrieve and validate an HTML file @@ -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.198 2002-01-17 08:58:38 duerst Exp $ +# $Id: check,v 1.199 2002-03-02 00:28:34 link Exp $ # # We need Perl 5.004. @@ -95,9 +95,9 @@ my $element_ref = 'http://www.htmlhelp.com/reference/html40/'; # # Strings -$VERSION = q$Revision: 1.198 $; +$VERSION = q$Revision: 1.199 $; $VERSION =~ s/Revision: ([\d\.]+) /$1/; -$DATE = q$Date: 2002-01-17 08:58:38 $; +$DATE = q$Date: 2002-03-02 00:28:34 $; $MAINTAINER = 'gerald@w3.org'; $NOTICE = ''; # "<p><strong>Note: This service will be ...</strong>"; |