From c801e58cc994d52316188ce637760c270f0bba78 Mon Sep 17 00:00:00 2001 From: johnnyq Date: Sat, 20 Jan 2024 20:58:53 -0500 Subject: [PATCH] Removed redundent get stripe client pays fee as the var is already aquired in beginning --- guest_pay_invoice_stripe.php | 3 --- 1 file changed, 3 deletions(-) diff --git a/guest_pay_invoice_stripe.php b/guest_pay_invoice_stripe.php index a1694197..85f579fd 100644 --- a/guest_pay_invoice_stripe.php +++ b/guest_pay_invoice_stripe.php @@ -268,9 +268,6 @@ if (isset($_GET['invoice_id'], $_GET['url_key']) && !isset($_GET['payment_intent $company_phone = sanitizeInput(formatPhoneNumber($row['company_phone'])); $company_locale = sanitizeInput($row['company_locale']); - $config_stripe_client_pays_fees = intval(getSettingValue($mysqli, 'config_stripe_client_pays_fees')); - - // Set Currency Formatting $currency_format = numfmt_create($company_locale, NumberFormatter::CURRENCY);