diff options
author | link <link@localhost> | 2002-12-07 04:00:18 +0000 |
---|---|---|
committer | link <link@localhost> | 2002-12-07 04:00:18 +0000 |
commit | 262add94eeae250ec23a5223f7bb1563bf7303f2 (patch) | |
tree | cd101dfa60e1d8ad349d065a8637cecb491f47b5 /httpd | |
parent | 6094c0a0d75aec7bd27062a315ca79cf0942ca00 (diff) | |
download | markup-validator-262add94eeae250ec23a5223f7bb1563bf7303f2.zip markup-validator-262add94eeae250ec23a5223f7bb1563bf7303f2.tar.gz markup-validator-262add94eeae250ec23a5223f7bb1563bf7303f2.tar.bz2 |
Make use of Config::General's -InterPolateVars option.
Diffstat (limited to 'httpd')
-rwxr-xr-x | httpd/cgi-bin/check | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/httpd/cgi-bin/check b/httpd/cgi-bin/check index 71dcf0b..4de17ba 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.317 2002-12-07 03:30:52 link Exp $ +# $Id: check,v 1.318 2002-12-07 04:00:18 link Exp $ # # Disable buffering on STDOUT! @@ -99,8 +99,9 @@ BEGIN { (-ConfigFile => $ENV{W3C_VALIDATOR_CFG} || '/etc/w3c/validator.conf', -MergeDuplicateOptions => 'yes', -SplitPolicy => 'equalsign', - -UseApacheInclude => 1, - -IncludeRelative => 1, + -UseApacheInclude => TRUE, + -IncludeRelative => TRUE, + -InterPolateVars => TRUE, -DefaultConfig => { Allowed_Protocols => 'http,https', SGML_Parser => '/usr/bin/onsgmls', }, @@ -133,7 +134,7 @@ The error reported was: '$@' # # Strings - $VERSION = q$Revision: 1.317 $; + $VERSION = q$Revision: 1.318 $; $VERSION =~ s/Revision: ([\d\.]+) /$1/; } # end of BEGIN block. |