CC-84: Smart Playlists

- fixed the issue where block length wasn't updated on spl section
This commit is contained in:
James 2012-07-26 10:49:23 -04:00
parent bef9ba1eea
commit 9bd823ee2c
3 changed files with 8 additions and 8 deletions

View file

@ -40,7 +40,7 @@ class CcBlockcontents extends BaseCcBlockcontents {
*
* @param String in format SS.uuuuuu, Datetime, or DateTime accepted string.
*
* @return CcPlaylistcontents The current object (for fluent API support)
* @return CcBlockcontents The current object (for fluent API support)
*/
public function setDbFadein($v)
{
@ -59,7 +59,7 @@ class CcBlockcontents extends BaseCcBlockcontents {
}
$this->fadein = $dt->format('H:i:s.u');
$this->modifiedColumns[] = CcPlaylistcontentsPeer::FADEIN;
$this->modifiedColumns[] = CcBlockcontentsPeer::FADEIN;
return $this;
} // setDbFadein()
@ -68,7 +68,7 @@ class CcBlockcontents extends BaseCcBlockcontents {
*
* @param String in format SS.uuuuuu, Datetime, or DateTime accepted string.
*
* @return CcPlaylistcontents The current object (for fluent API support)
* @return CcBlockcontents The current object (for fluent API support)
*/
public function setDbFadeout($v)
{
@ -87,7 +87,7 @@ class CcBlockcontents extends BaseCcBlockcontents {
}
$this->fadeout = $dt->format('H:i:s.u');
$this->modifiedColumns[] = CcPlaylistcontentsPeer::FADEOUT;
$this->modifiedColumns[] = CcBlockcontentsPeer::FADEOUT;
return $this;
} // setDbFadeout()