diff --git a/airtime_mvc/application/services/ShowService.php b/airtime_mvc/application/services/ShowService.php index cc0db9393..3c6d5f713 100644 --- a/airtime_mvc/application/services/ShowService.php +++ b/airtime_mvc/application/services/ShowService.php @@ -289,7 +289,15 @@ class Application_Service_ShowService if ($this->ccShow->isRepeating()) { $ccShowDays = $this->ccShow->getRepeatingCcShowDays(); } else { - $ccShowDays = $this->ccShow->getCcShowDayss(); + //$ccShowDays = $this->ccShow->getCcShowDayss(); + + /* Cannot use the above statement to get the cc_show_days + * object because it's getting the old object before the + * show was edited. clearInstancePool() didn't work. + */ + $ccShowDays = CcShowDaysQuery::create() + ->filterByDbShowId($this->ccShow->getDbId()) + ->find(); } }