diff options
author | ville <ville@localhost> | 2010-06-13 21:49:10 +0000 |
---|---|---|
committer | ville <ville@localhost> | 2010-06-13 21:49:10 +0000 |
commit | 2f846f7ae67520e15832341d7c395c29ece4905a (patch) | |
tree | 413f1e142554afa5ee9dc0996e107723829258ca | |
parent | 5679d2cea6e700afb4f6f8bb873d784237c55e61 (diff) | |
download | markup-validator-2f846f7ae67520e15832341d7c395c29ece4905a.zip markup-validator-2f846f7ae67520e15832341d7c395c29ece4905a.tar.gz markup-validator-2f846f7ae67520e15832341d7c395c29ece4905a.tar.bz2 |
Drop another unused variable.
-rwxr-xr-x | httpd/cgi-bin/check | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/httpd/cgi-bin/check b/httpd/cgi-bin/check index 53a7897..d937ae9 100755 --- a/httpd/cgi-bin/check +++ b/httpd/cgi-bin/check @@ -14,7 +14,7 @@ # This source code is available under the license at: # http://www.w3.org/Consortium/Legal/copyright-software # -# $Id: check,v 1.780 2010-06-13 21:47:08 ville Exp $ +# $Id: check,v 1.781 2010-06-13 21:49:10 ville Exp $ # # We need Perl 5.8.0+. @@ -192,7 +192,7 @@ EOF # # Strings - $VERSION = q$Revision: 1.780 $; + $VERSION = q$Revision: 1.781 $; $VERSION =~ s/Revision: ([\d\.]+) /$1/; # Read friendly error message file @@ -652,7 +652,6 @@ if (&is_xml($File)) { eval { $xmlparser->parse_string($xml_string); }; $xml_string = undef; - my $xml_parse_errors_line = undef; my @xmlwf_error_list; if (ref($@)) { |