CC-5450 : Refactor Media Management (Classes/DB) in Airtime

fixing scheduling for webstreams.
This commit is contained in:
Naomi 2014-01-22 16:27:41 -05:00
parent 56be00a399
commit 3ec0d1db8e
1 changed files with 3 additions and 3 deletions

View File

@ -88,9 +88,9 @@ class Webstream extends BaseWebstream
return array(
array (
"id" => $this->getId(),
"cliplength" => $this->getLength(),
"cuein" => $this->getCuein(),
"cueout" => $this->getCueout(),
"cliplength" => $this->getSchedulingLength(),
"cuein" => $this->getSchedulingCueIn(),
"cueout" => $this->getSchedulingCueOut(),
"fadein" => \Application_Model_Preference::GetDefaultFadeIn(),
"fadeout" => \Application_Model_Preference::GetDefaultFadeOut(),
)