diff --git a/docs/changelog/7.x.x.txt b/docs/changelog/7.x.x.txt index 2d4de1205..72cea27ec 100644 --- a/docs/changelog/7.x.x.txt +++ b/docs/changelog/7.x.x.txt @@ -4,6 +4,7 @@ - fixed #9375: Syndicated Content asset improperly decodes wide XML entities - fixed #9592: DataForm deleteAttachedFiles method can crash - fixed #9580: Gallery: albums shown in navigation + - fixed #9578: Use of "quotes" in badge name causes error 7.6.10 - fixed #9577: WebGUI::Form::Url::getValue returns blank rather than undef for blank fields diff --git a/lib/WebGUI/Shop/PayDriver/ITransact.pm b/lib/WebGUI/Shop/PayDriver/ITransact.pm index 7685387fe..8c643c017 100644 --- a/lib/WebGUI/Shop/PayDriver/ITransact.pm +++ b/lib/WebGUI/Shop/PayDriver/ITransact.pm @@ -424,8 +424,8 @@ sub doXmlRequest { # Create a request and stuff the xml in it my $request = HTTP::Request->new( POST => $xmlTransactionScript ); - $request->content_type( 'application/x-www-form-urlencoded' ); - $request->content( 'xml='.$xml ); + $request->content_type( 'text/xml' ); + $request->content( $xml ); # Do the request my $response = $userAgent->request($request);