mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-07-08 22:04:31 -04:00
Merge pull request #8095 from joshuadwire/v5-develop
Fix eWay failures related to 32-bit integer limit
This commit is contained in:
commit
c6e2cf32f1
@ -87,7 +87,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