diff options
author | ot <ot@localhost> | 2007-08-02 05:11:03 +0000 |
---|---|---|
committer | ot <ot@localhost> | 2007-08-02 05:11:03 +0000 |
commit | 46b855fb5cf8dff3725fa178824c4c3d71cb031b (patch) | |
tree | e1a3e28211a9f98b5d7880be04e43b2e49ca0806 /httpd/cgi-bin | |
parent | 2c8a5278e82db98eb95095ca2f54d04d77f1461b (diff) | |
download | markup-validator-46b855fb5cf8dff3725fa178824c4c3d71cb031b.zip markup-validator-46b855fb5cf8dff3725fa178824c4c3d71cb031b.tar.gz markup-validator-46b855fb5cf8dff3725fa178824c4c3d71cb031b.tar.bz2 |
not clogging our logs with a warning about a libxml bug we can't control
Diffstat (limited to 'httpd/cgi-bin')
-rwxr-xr-x | httpd/cgi-bin/check | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/httpd/cgi-bin/check b/httpd/cgi-bin/check index 7842135..4d7aa98 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.553 2007-08-02 04:57:54 ot Exp $ +# $Id: check,v 1.554 2007-08-02 05:11:03 ot Exp $ # # Disable buffering on STDOUT! @@ -186,7 +186,7 @@ Directory not readable (permission denied): @_r # # Strings - $VERSION = q$Revision: 1.553 $; + $VERSION = q$Revision: 1.554 $; $VERSION =~ s/Revision: ([\d\.]+) /$1/; # @@ -683,9 +683,9 @@ if (&is_xml($File)) { if (defined($xmlwf_error_col)) { if ((my $l = length($File->{Content}->[$xmlwf_error_line-1])) < $xmlwf_error_col) { # http://bugzilla.gnome.org/show_bug.cgi?id=434196 - warn("Warning: reported error column larger than line length " . - "($xmlwf_error_col > $l) in $File->{URI} line " . - "$xmlwf_error_line, libxml2 bug? Resetting to line length."); + #warn("Warning: reported error column larger than line length " . + # "($xmlwf_error_col > $l) in $File->{URI} line " . + # "$xmlwf_error_line, libxml2 bug? Resetting to line length."); $xmlwf_error_col = $l; } elsif ($xmlwf_error_col == 79) { |