From 13f8eaab71038ebbabff0f520be39da642360b6e Mon Sep 17 00:00:00 2001 From: Marcus Hill Date: Wed, 8 Feb 2023 10:50:35 +0000 Subject: [PATCH] Adjust stripe payment intent description to include invoice prefix+number --- guest_ajax.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guest_ajax.php b/guest_ajax.php index f96000fb..975a767c 100644 --- a/guest_ajax.php +++ b/guest_ajax.php @@ -68,7 +68,7 @@ if (isset($_GET['stripe_create_pi'])) { } $config_stripe_secret = $row['config_stripe_secret']; - $pi_description = "ITFlow: $client_name payment of $invoice_currency_code $balance_to_pay for $client_name"; + $pi_description = "ITFlow: $client_name payment of $invoice_currency_code $balance_to_pay for $invoice_prefix$invoice_number"; // Create a PaymentIntent with amount, currency and client details try {