From 5e6a94edb9948027b898573925205a971fa271dc Mon Sep 17 00:00:00 2001 From: denise Date: Thu, 16 Aug 2012 14:37:10 -0400 Subject: [PATCH] CC-4238: Playlists: Fade in/out is in wrong format -fixed --- airtime_mvc/application/models/Playlist.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/airtime_mvc/application/models/Playlist.php b/airtime_mvc/application/models/Playlist.php index 44ec4d5da..a08622e4e 100644 --- a/airtime_mvc/application/models/Playlist.php +++ b/airtime_mvc/application/models/Playlist.php @@ -235,6 +235,10 @@ SQL; $formatter = new LengthFormatter($offset_cliplength); $row['offset'] = $formatter->format(); + + $fades = $this->getFadeInfo($row['position']); + $row['fadein'] = $fades[0]; + $row['fadeout'] = $fades[1]; } return $rows;