Fix for SagePay

This commit is contained in:
Hillel Coren 2017-12-20 15:15:30 +02:00
parent 064072ca06
commit e4fb7faacc

View File

@ -309,7 +309,12 @@ class BasePaymentDriver
// prepare and process payment
$data = $this->paymentDetails($paymentMethod);
// TODO move to payment driver class
if ($this->isGateway(GATEWAY_SAGE_PAY_DIRECT) || $this->isGateway(GATEWAY_SAGE_PAY_SERVER)) {
$items = null;
} else {
$items = $this->paymentItems();
}
$response = $gateway->purchase($data)
->setItems($items)
->send();