From 292b074d8cb080329cf05d43776977ef4ecf53d5 Mon Sep 17 00:00:00 2001 From: johnnyq Date: Fri, 29 Aug 2025 13:44:22 -0400 Subject: [PATCH] Remove legacy Stripe Enabled from invoice Commented out Pay Via Saved card this will have to wait for next release --- user/invoice.php | 20 ++------------------ 1 file changed, 2 insertions(+), 18 deletions(-) diff --git a/user/invoice.php b/user/invoice.php index c392d504..e615f34b 100644 --- a/user/invoice.php +++ b/user/invoice.php @@ -194,17 +194,6 @@ if (isset($_GET['invoice_id'])) { AND payment_provider_active = 1; "); - // Payment with saved card (auto-pay) - if ($config_stripe_enable) { - $stripe_client_details = mysqli_fetch_array(mysqli_query($mysqli, "SELECT * FROM client_stripe WHERE client_id = $client_id LIMIT 1")); - if ($stripe_client_details) { - $stripe_id = sanitizeInput($stripe_client_details['stripe_id']); - $stripe_pm = sanitizeInput($stripe_client_details['stripe_pm']); - } - } - - - ?>