CC-5333 : Rebroadcast Shows are not created

This commit is contained in:
Naomi Aro 2013-09-23 12:20:10 +02:00
parent bbbf0b2c1d
commit ae1c41e4ce
2 changed files with 7 additions and 10 deletions

View file

@ -196,8 +196,8 @@ class Application_Service_ShowService
foreach ($ccShowDays as $day) {
$this->ccShow = $day->getCcShow();
$this->isRecorded = isset($this->isRecorded) ? $this->isRecorded : $this->ccShow->isRecorded();
$this->isRebroadcast = isset($this->isRebroadcast) ? $this->isRebroadcast : $this->ccShow->isRebroadcast();
$this->isRecorded = $this->ccShow->isRecorded();
$this->isRebroadcast = $this->ccShow->isRebroadcast();
if (!isset($ccShows[$day->getDbShowId()])) {
$ccShows[$day->getDbShowId()] = $day->getccShow();