From 56c138fb12870d0044e3ca64ca7ab79446801900 Mon Sep 17 00:00:00 2001 From: johnnyq Date: Sun, 28 Jan 2024 02:08:11 -0500 Subject: [PATCH] cleanup --- guest_pay_invoice_stripe.php | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/guest_pay_invoice_stripe.php b/guest_pay_invoice_stripe.php index 1fc6c300..c89d0b3a 100644 --- a/guest_pay_invoice_stripe.php +++ b/guest_pay_invoice_stripe.php @@ -2,15 +2,13 @@ require_once 'guest_header.php'; -function log_to_console($message) -{ +function log_to_console($message) { $message = date("H:i:s") . " - $message - ".PHP_EOL; print($message); flush(); ob_flush(); } - // Define wording DEFINE("WORDING_PAYMENT_FAILED", "

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

"); @@ -379,4 +377,3 @@ if (isset($_GET['invoice_id'], $_GET['url_key']) && !isset($_GET['payment_intent require_once 'guest_footer.php'; -