Merge pull request #337 from searsaw/patch-1

New account gateways not saving
This commit is contained in:
Hillel Coren 2015-06-01 23:10:54 +03:00
commit 2e39bfaba1

View File

@ -186,7 +186,7 @@ class AccountGatewayController extends BaseController
$gatewayId = GATEWAY_PAYPAL_EXPRESS; $gatewayId = GATEWAY_PAYPAL_EXPRESS;
} elseif ($paymentType == PAYMENT_TYPE_BITCOIN) { } elseif ($paymentType == PAYMENT_TYPE_BITCOIN) {
$gatewayId = GATEWAY_BITPAY; $gatewayId = GATEWAY_BITPAY;
} elseif ($paymentType = PAYMENT_TYPE_DWOLLA) { } elseif ($paymentType == PAYMENT_TYPE_DWOLLA) {
$gatewayId = GATEWAY_DWOLLA; $gatewayId = GATEWAY_DWOLLA;
} }
@ -277,4 +277,4 @@ class AccountGatewayController extends BaseController
} }
} }
} }