From 8e82db1bc778dc7ecc2967673ef43152cd14a882 Mon Sep 17 00:00:00 2001 From: denise Date: Tue, 5 Feb 2013 17:57:21 -0500 Subject: [PATCH] CC-4921: Now Playing: Cannot insert items into current playing show -filler time in cc_schedule was not setting cue_in and cue_out -since we made those colunns not null and removed a default value, we always have to set a value --- airtime_mvc/application/models/Scheduler.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/airtime_mvc/application/models/Scheduler.php b/airtime_mvc/application/models/Scheduler.php index be9930402..92db4cacd 100644 --- a/airtime_mvc/application/models/Scheduler.php +++ b/airtime_mvc/application/models/Scheduler.php @@ -325,6 +325,8 @@ class Application_Model_Scheduler $filler->setDbStarts($DT) ->setDbEnds($this->nowDT) ->setDbClipLength($cliplength) + ->setDbCueIn('00:00:00') + ->setDbCueOut('00:00:00') ->setDbPlayoutStatus(-1) ->setDbInstanceId($instance->getDbId()) ->save($this->con);