From 1b0dd13eacaf4349fe12ba1b9ba20f0ac5d45cd0 Mon Sep 17 00:00:00 2001 From: denise Date: Tue, 2 Oct 2012 15:38:05 -0400 Subject: [PATCH] CC-4521: Playlist Builder: Cannot set fades -fixed --- airtime_mvc/application/models/Playlist.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/airtime_mvc/application/models/Playlist.php b/airtime_mvc/application/models/Playlist.php index dc58bf107..021783c49 100644 --- a/airtime_mvc/application/models/Playlist.php +++ b/airtime_mvc/application/models/Playlist.php @@ -624,7 +624,7 @@ SQL; if (!is_null($fadeIn)) { - $sql = "SELECT INTERVAL :fadein > INTERVAL '{$clipLength}'"; + $sql = "SELECT :fadein::INTERVAL > INTERVAL '{$clipLength}'"; if (Application_Common_Database::prepareAndExecute($sql, array(':fadein'=>$fadeIn), 'column')) { //"Fade In can't be larger than overall playlength."; $fadeIn = $clipLength; @@ -633,7 +633,7 @@ SQL; } if (!is_null($fadeOut)) { - $sql = "SELECT INTERVAL :fadeout > INTERVAL '{$clipLength}'"; + $sql = "SELECT :fadeout::INTERVAL > INTERVAL '{$clipLength}'"; if (Application_Common_Database::prepareAndExecute($sql, array(':fadeout'=>$fadeOut), 'column')) { //Fade Out can't be larger than overall playlength."; $fadeOut = $clipLength;