From d70951a334c443db4c67fd1e6b23552adc83a080 Mon Sep 17 00:00:00 2001 From: denise Date: Wed, 19 Sep 2012 15:03:16 -0400 Subject: [PATCH] CC-4494: Calendar: Cannot resize show -fixed --- airtime_mvc/application/models/Show.php | 23 +++++++++++++++-------- 1 file changed, 15 insertions(+), 8 deletions(-) diff --git a/airtime_mvc/application/models/Show.php b/airtime_mvc/application/models/Show.php index 9a0eaa452..d9467cfc1 100644 --- a/airtime_mvc/application/models/Show.php +++ b/airtime_mvc/application/models/Show.php @@ -186,6 +186,7 @@ SQL; /* Check if the show being resized and any of its repeats * overlap with other scheduled shows */ + $utc = new DateTimeZone("UTC"); foreach ($showInstances as $si) { $startsDateTime = new DateTime($si->getDbStarts(), new DateTimeZone("UTC")); @@ -223,15 +224,10 @@ SQL; $sql_gen = << :current_timestamp1) - AND ((ends + interval :deltaDay2 + interval :interval2 - starts) <= interval '24:00') - -UPDATE cc_show_days -SET duration = (CAST(duration AS interval) + interval :deltaDay3 + interval :interval3) -WHERE show_id = :show_id2 - AND ((CAST(duration AS interval) + interval :deltaDay4 + interval :interval4) <= interval '24:00') + AND ((ends + :deltaDay2::INTERVAL + :interval2::INTERVAL - starts) <= interval '24:00') SQL; Application_Common_Database::prepareAndExecute($sql_gen, @@ -241,7 +237,18 @@ SQL; ':show_id1' => $this->_showId, ':current_timestamp1' => $current_timestamp, ':deltaDay2' => "$deltaDay days", - ':interval2' => "$hours:$mins", + ':interval2' => "$hours:$mins" + ), "execute"); + + $sql_gen = << "$deltaDay days", ':interval3' => "$hours:$mins", ':show_id2' => $this->_showId,