diff options
author | ville <ville@localhost> | 2010-06-10 22:19:55 +0000 |
---|---|---|
committer | ville <ville@localhost> | 2010-06-10 22:19:55 +0000 |
commit | 1513afa14014ca260d784539a63c17e1f15fd307 (patch) | |
tree | 29b63357b51785060f71f7feeecf404745922445 | |
parent | 43144903be1e33d8605a2fc74f37377b663371a0 (diff) | |
download | markup-validator-1513afa14014ca260d784539a63c17e1f15fd307.zip markup-validator-1513afa14014ca260d784539a63c17e1f15fd307.tar.gz markup-validator-1513afa14014ca260d784539a63c17e1f15fd307.tar.bz2 |
Bring back comment why XML::LibXML 1.70+ is needed.
-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 b38c354..eca0ce3 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.777 2010-06-10 22:15:47 ville Exp $ +# $Id: check,v 1.778 2010-06-10 22:19:55 ville Exp $ # # We need Perl 5.8.0+. @@ -192,7 +192,7 @@ EOF # # Strings - $VERSION = q$Revision: 1.777 $; + $VERSION = q$Revision: 1.778 $; $VERSION =~ s/Revision: ([\d\.]+) /$1/; # Read friendly error message file @@ -222,7 +222,7 @@ EOF local $ENV{XML_CATALOG_FILES} = catfile($CFG->{Paths}->{SGML}->{Library}, 'catalog.xml'); require XML::LibXML; - XML::LibXML->VERSION(1.70); + XML::LibXML->VERSION(1.70); # Need 1.70 for (working) structured errors } # end of BEGIN block. |