CC-2065: Fade times longer than Airtime supports can be set in Playlist Builder and Preferences
- Fixed refresh bug that results in storing to database a 00.000000 value instead of 00:00:00
This commit is contained in:
parent
61fb8a4fb9
commit
09ccac3384
|
@ -1020,15 +1020,15 @@ class Application_Model_Playlist {
|
|||
|
||||
if(is_null($fadeIn)) {
|
||||
if($defaultFade != "")
|
||||
$fadeIn = $defaultFade;
|
||||
$fadeIn = '00:00:'.$defaultFade;
|
||||
else
|
||||
$fadeIn = '00.000000';
|
||||
$fadeIn = '00:00:00';
|
||||
}
|
||||
if(is_null($fadeOut)) {
|
||||
if($defaultFade != "")
|
||||
$fadeOut = $defaultFade;
|
||||
$fadeOut = '00:00:'.$defaultFade;
|
||||
else
|
||||
$fadeOut = '00.000000';
|
||||
$fadeOut = '00:00:00';
|
||||
}
|
||||
|
||||
$row = new CcPlaylistcontents();
|
||||
|
|
Loading…
Reference in New Issue