From ed8674687369ff2b2f40291bef5c99909b7706ca Mon Sep 17 00:00:00 2001 From: Chris Smith Date: Wed, 19 Feb 2020 13:40:30 -0600 Subject: [PATCH] on sale --- src/functions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/functions.php b/src/functions.php index 192ab42..0f9b3e8 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('3/15/2020 8:00am', new DateTimeZone('America/Chicago')); + $dateOnSale = new DateTime('2/15/2020 8:00am', new DateTimeZone('America/Chicago')); $interval = $todaysDate->diff($dateOnSale); if ($interval->days >= 0 && $interval->invert === 0) {