You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There is a bug in PHP which causes to convert the managed_customer_id into an integer which is wrong.
On line 262 of processs_recurring_eway_payments add:
//PHP bug: https://bugs.php.net/bug.php?id=49669. issue with value greater than 2147483647.
settype($managed_customer_id,"float");
otherwise the soap call will change the managed customer id to 2147483647 which is the greatest value of an Integer
The text was updated successfully, but these errors were encountered:
There is a bug in PHP which causes to convert the managed_customer_id into an integer which is wrong.
On line 262 of processs_recurring_eway_payments add:
otherwise the soap call will change the managed customer id to 2147483647 which is the greatest value of an Integer
The text was updated successfully, but these errors were encountered: