From 99902bc10c4c92eb5487a342a7fc949e2d7d19f9 Mon Sep 17 00:00:00 2001 From: Naomi Date: Fri, 13 Dec 2013 15:16:51 -0500 Subject: [PATCH] CC-5627 : Check all Application_Common_DateHelper calculations that use timezone. --- .../application/models/ShowInstance.php | 37 ------------------- 1 file changed, 37 deletions(-) diff --git a/airtime_mvc/application/models/ShowInstance.php b/airtime_mvc/application/models/ShowInstance.php index 1d25bf9cd..b9477b88b 100644 --- a/airtime_mvc/application/models/ShowInstance.php +++ b/airtime_mvc/application/models/ShowInstance.php @@ -164,43 +164,6 @@ SQL; $this->_showInstance->getDbModifiedInstance(); } - public function correctScheduleStartTimes() - { - $con = Propel::getConnection(); - - $instance_id = $this->getShowInstanceId(); - $sql = << $instance_id ), 'column' ); - - if ($scheduleStarts) { - $scheduleStartsEpoch = strtotime($scheduleStarts); - $showStartsEpoch = strtotime($this->getShowInstanceStart()); - - $diff = $showStartsEpoch - $scheduleStartsEpoch; - - if ($diff != 0) { - $sql = << $diff, - ':diff2' => $diff, - ':instanceId' => $instance_id ), 'execute'); - } - } - Application_Model_RabbitMq::PushSchedule(); - } - /* * @param $dateTime * php Datetime object to add deltas to