Index: branches/5.2.x/units/gateways/gw_classes/worldpay.php =================================================================== diff -u -N -r13845 -r14099 --- branches/5.2.x/units/gateways/gw_classes/worldpay.php (.../worldpay.php) (revision 13845) +++ branches/5.2.x/units/gateways/gw_classes/worldpay.php (.../worldpay.php) (revision 14099) @@ -1,6 +1,6 @@ Application->GetVar('transStatus') == 'Y' ? 1 : 0; - echo curl_post($this->Application->GetVar($transaction_status ? 'MC_return_page' : 'MC_cancel_return_page'), '', null, 'GET'); + $curl_helper =& $this->Application->recallObject('CurlHelper'); + /* @var $curl_helper kCurlHelper */ + + $url = $this->Application->GetVar($transaction_status ? 'MC_return_page' : 'MC_cancel_return_page'); + echo $curl_helper->Send($url); + return $transaction_status; } } \ No newline at end of file