added missing dn function

This commit is contained in:
Robb Ebright 2017-03-31 11:46:39 -04:00
parent 4489b68d48
commit 1ff48a32cd
1 changed files with 5 additions and 0 deletions

View File

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