CC-84: Smart Playlists
- fixed the issue where block length wasn't updated on spl section
This commit is contained in:
parent
bef9ba1eea
commit
9bd823ee2c
3 changed files with 8 additions and 8 deletions
|
@ -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()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue