diff options
-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) { |