From 8bc36a7c70277a386e6303b33eb09355ac7e3244 Mon Sep 17 00:00:00 2001 From: David Bomba Date: Thu, 23 Sep 2021 15:07:40 +1000 Subject: [PATCH] Turning on token billing for PayFast --- app/PaymentDrivers/PayFast/Token.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/PaymentDrivers/PayFast/Token.php b/app/PaymentDrivers/PayFast/Token.php index 6a6f34100560..367c6e6b9fe1 100644 --- a/app/PaymentDrivers/PayFast/Token.php +++ b/app/PaymentDrivers/PayFast/Token.php @@ -86,8 +86,8 @@ class Token $body = [ 'amount' => $amount, 'item_name' => 'purchase', - 'item_description' => ctrans('texts.invoices') . ': ' . collect($payment_hash->invoices())->pluck('invoice_number'), - // 'm_payment_id' => $payment_hash->hash, + // 'item_description' => ctrans('texts.invoices') . ': ' . collect($payment_hash->invoices())->pluck('invoice_number'), + 'm_payment_id' => $payment_hash->hash, ]; $header['signature'] = $this->generate_parameter_string(array_merge($header, $body));