diff options
author | ot <ot@localhost> | 2004-11-19 07:12:24 +0000 |
---|---|---|
committer | ot <ot@localhost> | 2004-11-19 07:12:24 +0000 |
commit | dd1463646dcc8a41fbe0059775183f69d26e3c49 (patch) | |
tree | 9ff406892398d95efbbbc867c290e1f2d60b98d2 | |
parent | 922de306a68a496026bd5ef89be0de50210b9e28 (diff) | |
download | markup-validator-dd1463646dcc8a41fbe0059775183f69d26e3c49.zip markup-validator-dd1463646dcc8a41fbe0059775183f69d26e3c49.tar.gz markup-validator-dd1463646dcc8a41fbe0059775183f69d26e3c49.tar.bz2 |
been doing too much python, recently, maybe?
-rwxr-xr-x | httpd/cgi-bin/check | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/httpd/cgi-bin/check b/httpd/cgi-bin/check index 4204867..c381f12 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.361 2004-11-19 07:02:47 ot Exp $ +# $Id: check,v 1.362 2004-11-19 07:12:24 ot Exp $ # # Disable buffering on STDOUT! @@ -222,7 +222,7 @@ Directory not readable (permission denied): @_r # # Strings - $VERSION = q$Revision: 1.361 $; + $VERSION = q$Revision: 1.362 $; $VERSION =~ s/Revision: ([\d\.]+) /$1/; # @@ -312,7 +312,7 @@ my $E = HTML::Template->new( # Read friendly error message file -my $error_messages_list = File::Spec->catfile($CFG->{Paths}->{Templates}, $lang, 'error_messages.cfg') +my $error_messages_list = File::Spec->catfile($CFG->{Paths}->{Templates}, $lang, 'error_messages.cfg'); my %config_opts = (-ConfigFile => $error_messages_list); my %rsrc = Config::General->new(%config_opts)->getall(); $RSRC = \%rsrc; |