diff options
author | ot <ot@localhost> | 2007-04-30 13:36:34 +0000 |
---|---|---|
committer | ot <ot@localhost> | 2007-04-30 13:36:34 +0000 |
commit | b7193f8143ff388be618fba845a061ede079c2d2 (patch) | |
tree | 5260b6ca0d47cc551f9ca633f4328b4a3d5a54f5 | |
parent | e75583f9d8cdabaff0d59eefb1e899b129a0d2dd (diff) | |
download | markup-validator-b7193f8143ff388be618fba845a061ede079c2d2.zip markup-validator-b7193f8143ff388be618fba845a061ede079c2d2.tar.gz markup-validator-b7193f8143ff388be618fba845a061ede079c2d2.tar.bz2 |
fixing SOAP12 output - thanks to Struan Donald for the Bug Report
-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 e2fd4b8..d048698 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.512 2007-04-28 19:50:15 ville Exp $ +# $Id: check,v 1.513 2007-04-30 13:36:34 ot Exp $ # # Disable buffering on STDOUT! @@ -180,7 +180,7 @@ Directory not readable (permission denied): @_r # # Strings - $VERSION = q$Revision: 1.512 $; + $VERSION = q$Revision: 1.513 $; $VERSION =~ s/Revision: ([\d\.]+) /$1/; # @@ -883,7 +883,7 @@ if ($File->{Opt}->{Output} eq 'xml') { } elsif ($File->{'Error Flagged'}) { # should send SOAP fault message $template = $File->{Templates}->{SOAPFault}; } else { - $template = $File->{SOAPT}; + $template = $File->{Templates}->{SOAP}; } } else { $template = $File->{Templates}->{Result}; |