From 3bebc5ad1d2ec4661262acb7cb381bf7bd4be0ab Mon Sep 17 00:00:00 2001 From: scottshipman Date: Thu, 6 Dec 2018 13:45:19 -0500 Subject: [PATCH] [ENG-661] apply client timezone to current time (->now) for all subsequent evaluations --- Model/Schedule.php | 1 + 1 file changed, 1 insertion(+) diff --git a/Model/Schedule.php b/Model/Schedule.php index 4fdfd097..5e71969f 100644 --- a/Model/Schedule.php +++ b/Model/Schedule.php @@ -435,6 +435,7 @@ public function setTimezone(\DateTimeZone $timezone = null) $timezone = new \DateTimeZone($timezone); } $this->timezone = $timezone; + $this->now->setTimezone($timezone); return $this; }