From d2d1b25e3246958d42d7f1fb6b72666b19b799b3 Mon Sep 17 00:00:00 2001 From: wrongecho <32306651+wrongecho@users.noreply.github.com> Date: Sat, 13 May 2023 22:44:39 +0100 Subject: [PATCH] Update guest_pay_invoice_stripe.php Rem comment re multi-company --- guest_pay_invoice_stripe.php | 1 - 1 file changed, 1 deletion(-) diff --git a/guest_pay_invoice_stripe.php b/guest_pay_invoice_stripe.php index 9cad3dc0..3f70932c 100644 --- a/guest_pay_invoice_stripe.php +++ b/guest_pay_invoice_stripe.php @@ -6,7 +6,6 @@ require_once('guest_header.php'); DEFINE("WORDING_PAYMENT_FAILED", "

There was an error verifying your payment. Please contact us for more information.

"); // Setup Stripe -// Defaulting to company id of 1 (as multi-company is being removed) $stripe_vars = mysqli_fetch_array(mysqli_query($mysqli, "SELECT config_stripe_enable, config_stripe_publishable, config_stripe_secret, config_stripe_account FROM settings WHERE company_id = 1")); $config_stripe_enable = intval($stripe_vars['config_stripe_enable']); $config_stripe_publishable = nullable_htmlentities($stripe_vars['config_stripe_publishable']);