From 29c5910e0d2625cc1f9e029c41290352ea348cbb Mon Sep 17 00:00:00 2001 From: Chris Smith Date: Thu, 14 Mar 2019 07:08:10 -0500 Subject: [PATCH] 8am sale --- src/functions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/functions.php b/src/functions.php index 9b3b763..9789688 100644 --- a/src/functions.php +++ b/src/functions.php @@ -88,7 +88,7 @@ function shoppingCartTotal($price) function checkIfTicketsAreOnSale() { $todaysDate = new DateTime('now', new DateTimeZone('America/Chicago')); - $dateOnSale = new DateTime('3/15/2019 9:00am', new DateTimeZone('America/Chicago')); + $dateOnSale = new DateTime('3/15/2019 8:00am', new DateTimeZone('America/Chicago')); $interval = $todaysDate->diff($dateOnSale); if($interval->days >= 0 && $interval->invert === 0) {