mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-07-09 03:14:30 -04:00
Fix eWay failures related to 32-bit integer limit
This commit is contained in:
parent
e89e554df0
commit
0b15ee7eed
@ -92,7 +92,7 @@ class CreditCard
|
|||||||
|
|
||||||
//success
|
//success
|
||||||
$cgt = [];
|
$cgt = [];
|
||||||
$cgt['token'] = $response->Customer->TokenCustomerID;
|
$cgt['token'] = strval($response->Customer->TokenCustomerID);
|
||||||
$cgt['payment_method_id'] = GatewayType::CREDIT_CARD;
|
$cgt['payment_method_id'] = GatewayType::CREDIT_CARD;
|
||||||
|
|
||||||
$payment_meta = new \stdClass;
|
$payment_meta = new \stdClass;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user