diff options
-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 c5a08e8..d3c9ed7 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.597 2008-08-18 14:32:32 ot Exp $ +# $Id: check,v 1.598 2008-08-19 13:20:24 ot Exp $ # # Disable buffering on STDOUT! @@ -191,7 +191,7 @@ Directory not readable (permission denied): @_r # # Strings - $VERSION = q$Revision: 1.597 $; + $VERSION = q$Revision: 1.598 $; $VERSION =~ s/Revision: ([\d\.]+) /$1/; # @@ -889,7 +889,7 @@ sub html5_validate (\$) { } if($attribute->name eq "last-column") { - $html5_error_col = $attribute->getValue(); + $html5_error_col = $attribute->getValue()-1; } if($attribute->name eq "last-line") { $html5_error_line = $attribute->getValue(); |