This commit is contained in:
johnnyq 2024-01-28 02:08:11 -05:00
parent 3d3bb6a436
commit 56c138fb12
1 changed files with 1 additions and 4 deletions

View File

@ -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", "<br><h2>There was an error verifying your payment. Please contact us for more information.</h2>");
@ -379,4 +377,3 @@ if (isset($_GET['invoice_id'], $_GET['url_key']) && !isset($_GET['payment_intent
require_once 'guest_footer.php';