diff options
author | gerald <gerald@localhost> | 1999-09-06 04:58:00 +0000 |
---|---|---|
committer | gerald <gerald@localhost> | 1999-09-06 04:58:00 +0000 |
commit | 4adc953efcc47773406da2d818994393eff20459 (patch) | |
tree | e52648f7822233a4fc1f649eb7df4d8dfee6687b | |
parent | 78c2d571b134453b518761fbe63b5cdd116a16cd (diff) | |
download | markup-validator-4adc953efcc47773406da2d818994393eff20459.zip markup-validator-4adc953efcc47773406da2d818994393eff20459.tar.gz markup-validator-4adc953efcc47773406da2d818994393eff20459.tar.bz2 |
minor fix of @options definition (made it use qw),
thanks to Terje Bless for the patch
-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 7587b8f..6f18aee 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.30 1999-09-06 04:42:45 gerald Exp $ +# $Id: check,v 1.31 1999-09-06 04:58:00 gerald Exp $ use LWP::UserAgent; use strict; @@ -17,8 +17,8 @@ use strict; # Constant definitions ############################################################################# -my $cvsrevision = '$Revision: 1.30 $'; -my $cvsdate = '$Date: 1999-09-06 04:42:45 $'; +my $cvsrevision = '$Revision: 1.31 $'; +my $cvsdate = '$Date: 1999-09-06 04:58:00 $'; my $logfile = "/var/log/httpd/val-svc"; @@ -68,7 +68,7 @@ my $rightarrow = "${lt}tt${gt}${lt}img src=\"/images/arrow_right.gif\" alt=\"^\ my $contchars = "${lt}tt${gt}${lt}img src=\"/images/ellipsis.gif\" alt=\"[...]\"${gt}${lt}/tt${gt}"; my $gifborder = " border=0"; -my @options = ( 'weblint', 'pw', 'outline', 'ss', 'sp', 'noatt' ); +my @options = qw(weblint pw outline ss sp noatt); ############################################################################# # Array of FPIs -> plain text version strings |