New account gateways not saving

Noticed a bug when setting up things locally.  This prevented new account gateways from being saved in the DB.
This commit is contained in:
Alex Sears 2015-06-01 16:07:37 -04:00
parent 1f28cc2106
commit 59f5d60207

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;
} }