From 0746115d2c3c0e8592b2e8e3f8fe2237c3ce81f1 Mon Sep 17 00:00:00 2001 From: Naomi Aro Date: Thu, 29 Mar 2012 11:06:57 +0200 Subject: [PATCH] CC-3504 : Adding a clip when nothing is playing should schedule the clip at the current time --- airtime_mvc/application/models/airtime/CcShowInstances.php | 7 ------- 1 file changed, 7 deletions(-) diff --git a/airtime_mvc/application/models/airtime/CcShowInstances.php b/airtime_mvc/application/models/airtime/CcShowInstances.php index 447c36cc1..35ed43726 100644 --- a/airtime_mvc/application/models/airtime/CcShowInstances.php +++ b/airtime_mvc/application/models/airtime/CcShowInstances.php @@ -111,10 +111,6 @@ class CcShowInstances extends BaseCcShowInstances { //post save hook to update the cc_schedule status column for the tracks in the show. public function updateScheduleStatus(PropelPDO $con) { - Logging::log("in post save for showinstances"); - - $now = time(); - //scheduled track is in the show CcScheduleQuery::create() ->filterByDbInstanceId($this->id) @@ -122,8 +118,6 @@ class CcShowInstances extends BaseCcShowInstances { ->filterByDbEnds($this->ends, Criteria::LESS_EQUAL) ->update(array('DbPlayoutStatus' => 1), $con); - Logging::log("updating status for in show items."); - //scheduled track is a boundary track CcScheduleQuery::create() ->filterByDbInstanceId($this->id) @@ -138,7 +132,6 @@ class CcShowInstances extends BaseCcShowInstances { ->filterByDbPlayoutStatus(0, Criteria::GREATER_EQUAL) ->filterByDbStarts($this->ends, Criteria::GREATER_THAN) ->update(array('DbPlayoutStatus' => 0), $con); - } public function preInsert(PropelPDO $con = null) {