diff --git a/airtime_mvc/application/models/Show.php b/airtime_mvc/application/models/Show.php index 8fdfeec0a..d36949953 100644 --- a/airtime_mvc/application/models/Show.php +++ b/airtime_mvc/application/models/Show.php @@ -142,6 +142,11 @@ class Application_Model_Show return $AutoPlaylistRepeat; } + public function setAutoPlaylistRepeat($value) + { + $show = CcShowQuery::create()->findPK($this->_showId); + $show->setDbAutoPlaylistRepeat($value); + } public function setHasAutoPlaylist($value) {