From 7d92b7798c3a8f3bf5b668671f6f9c79399d71e8 Mon Sep 17 00:00:00 2001 From: Chris Smith Date: Fri, 13 Mar 2020 13:16:33 -0500 Subject: [PATCH] ticket sale update --- src/functions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/functions.php b/src/functions.php index 0f9b3e8..192ab42 100644 --- a/src/functions.php +++ b/src/functions.php @@ -130,7 +130,7 @@ function shoppingCartTotal($price) function checkIfTicketsAreOnSale() { $todaysDate = new DateTime('now', new DateTimeZone('America/Chicago')); - $dateOnSale = new DateTime('2/15/2020 8:00am', new DateTimeZone('America/Chicago')); + $dateOnSale = new DateTime('3/15/2020 8:00am', new DateTimeZone('America/Chicago')); $interval = $todaysDate->diff($dateOnSale); if ($interval->days >= 0 && $interval->invert === 0) {