CC-2065: Fade times longer than Airtime supports can be set in Playlist Builder and Preferences

This commit is contained in:
Daniel Franklin 2012-02-02 15:59:35 -05:00
parent 09ccac3384
commit 7317b1d5af
2 changed files with 11 additions and 5 deletions

View file

@ -436,7 +436,7 @@ class Application_Model_Playlist {
if ( $dbFadeStrPos === False )
$fade .= '.000000';
else
while( strlen( $fade ) < 8 )
while( strlen( $fade ) < 9 )
$fade .= '0';
//done, just need to set back the formated values
return $fade;