diff options
author | ville <ville@localhost> | 2009-11-24 19:03:12 +0000 |
---|---|---|
committer | ville <ville@localhost> | 2009-11-24 19:03:12 +0000 |
commit | 189e9dadfe8f153f6584996f4c40f13116badf36 (patch) | |
tree | 6e738ae18605981ffabf0c4e6291f5147bce96d7 | |
parent | a0d3291a7ee90c37db171517f3151db20ee9735b (diff) | |
download | markup-validator-189e9dadfe8f153f6584996f4c40f13116badf36.zip markup-validator-189e9dadfe8f153f6584996f4c40f13116badf36.tar.gz markup-validator-189e9dadfe8f153f6584996f4c40f13116badf36.tar.bz2 |
Fix perlcritic "Literal line breaks in a string" errors.
-rwxr-xr-x | httpd/cgi-bin/check | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/httpd/cgi-bin/check b/httpd/cgi-bin/check index 97c7276..910cd4c 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.728 2009-11-24 18:58:59 ville Exp $ +# $Id: check,v 1.729 2009-11-24 19:03:12 ville Exp $ # # We need Perl 5.8.0+. @@ -212,7 +212,7 @@ EOF # # Strings - $VERSION = q$Revision: 1.728 $; + $VERSION = q$Revision: 1.729 $; $VERSION =~ s/Revision: ([\d\.]+) /$1/; # @@ -3307,8 +3307,8 @@ sub start_element $err->{num} = "no-xmlns"; $err->{type} = "E"; $err->{msg} = - "Missing xmlns attribute for element " . $element->{Name} . ". - The value should be: $self->{CFG}->{Types}->{$doctype}->{Namespace}"; + "Missing xmlns attribute for element $element->{Name}. The " . + "value should be: $self->{CFG}->{Types}->{$doctype}->{Namespace}"; # ... $self->{_file}->{'Is Valid'} = FALSE; @@ -3328,8 +3328,8 @@ sub start_element $err->{num} = "wrong-xmlns"; $err->{type} = "E"; $err->{msg} = - "Wrong xmlns attribute for element $element->{Name}. " . - "The value should be: $self->{CFG}->{Types}->{$doctype}->{Namespace}"; + "Wrong xmlns attribute for element $element->{Name}. The " . + "value should be: $self->{CFG}->{Types}->{$doctype}->{Namespace}"; # ... $self->{_file}->{'Is Valid'} = FALSE; |