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
This commit is contained in:
denise 2013-02-05 17:57:21 -05:00
parent 909f2c95c4
commit 8e82db1bc7
1 changed files with 2 additions and 0 deletions

View File

@ -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);