From 989004d83e649550e1c20ebc7c7e5a7b01a55a86 Mon Sep 17 00:00:00 2001 From: "Matthew Wire (MJW Consulting)" <mjw@mjwconsult.co.uk> Date: Fri, 12 Oct 2018 01:36:55 +0100 Subject: [PATCH] Don't overwrite stripeCustomer object --- CRM/Core/Payment/Stripe.php | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/CRM/Core/Payment/Stripe.php b/CRM/Core/Payment/Stripe.php index 8ac9b8b1..c25b7b26 100644 --- a/CRM/Core/Payment/Stripe.php +++ b/CRM/Core/Payment/Stripe.php @@ -93,8 +93,7 @@ class CRM_Core_Payment_Stripe extends CRM_Core_Payment { * The error! */ public function logStripeException($op, $exception) { - $body = print_r($exception->getJsonBody(), TRUE); - Civi::log()->debug("Stripe_Error {$op}: <pre> {$body} </pre>"); + Civi::log()->debug("Stripe_Error {$op}: " . print_r($exception->getJsonBody(), TRUE)); } /** @@ -494,14 +493,14 @@ class CRM_Core_Payment_Stripe extends CRM_Core_Payment { } else { $stripeCustomer->card = $card_token; - $stripeCustomer = $this->stripeCatchErrors('save', $stripeCustomer, $params); - if ($this->isErrorReturn($stripeCustomer)) { - if (($stripeCustomer['type'] == 'invalid_request_error') && ($stripeCustomer['code'] == 'token_already_used')) { + $updatedStripeCustomer = $this->stripeCatchErrors('save', $stripeCustomer, $params); + if ($this->isErrorReturn($updatedStripeCustomer)) { + if (($updatedStripeCustomer['type'] == 'invalid_request_error') && ($updatedStripeCustomer['code'] == 'token_already_used')) { // This error is ok, we've already used the token during create_customer } else { - self::handleErrorNotification($stripeCustomer, $params['stripe_error_url']); - return $stripeCustomer; + self::handleErrorNotification($updatedStripeCustomer, $params['stripe_error_url']); + return $updatedStripeCustomer; } } } -- GitLab