From 8d2a9bbf60e90ac09ba7f8fc15bc2b12bd330284 Mon Sep 17 00:00:00 2001 From: johnnyq Date: Mon, 22 Jan 2024 12:17:06 -0500 Subject: [PATCH] Fix Broke Guest Pay Invoice via Stripe removed additional ) --- guest_pay_invoice_stripe.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guest_pay_invoice_stripe.php b/guest_pay_invoice_stripe.php index 85f579fd..1f215574 100644 --- a/guest_pay_invoice_stripe.php +++ b/guest_pay_invoice_stripe.php @@ -251,7 +251,7 @@ if (isset($_GET['invoice_id'], $_GET['url_key']) && !isset($_GET['payment_intent // Invoice exists - get details $row = mysqli_fetch_array($invoice_sql); $invoice_id = intval($row['invoice_id']); - $invoice_prefix = sanitizeInput(($row['invoice_prefix']); + $invoice_prefix = sanitizeInput($row['invoice_prefix']); $invoice_number = intval($row['invoice_number']); $invoice_amount = floatval($row['invoice_amount']); $invoice_currency_code = sanitizeInput($row['invoice_currency_code']);