From eecc90547dd8722d437856f75b83262153668d4f Mon Sep 17 00:00:00 2001 From: James Date: Tue, 18 Sep 2012 15:47:37 -0400 Subject: [PATCH] CC-4461: Now Playing: Timeline does not reflect the changes on Show start time (which is changed from Calendar->Edit Show) - fixed --- .../application/controllers/ScheduleController.php | 2 ++ airtime_mvc/application/models/Scheduler.php | 2 +- airtime_mvc/application/models/ShowInstance.php | 12 ++++++------ 3 files changed, 9 insertions(+), 7 deletions(-) diff --git a/airtime_mvc/application/controllers/ScheduleController.php b/airtime_mvc/application/controllers/ScheduleController.php index e061d3d5d..adf84380e 100644 --- a/airtime_mvc/application/controllers/ScheduleController.php +++ b/airtime_mvc/application/controllers/ScheduleController.php @@ -783,6 +783,8 @@ class ScheduleController extends Zend_Controller_Action $data['add_show_instance_id']); if ($success) { + $scheduler = new Application_Model_Scheduler(); + $scheduler->removeGaps($data['add_show_instance_id']); $this->view->addNewShow = true; $this->view->newForm = $this->view->render('schedule/add-show-form.phtml'); } else { diff --git a/airtime_mvc/application/models/Scheduler.php b/airtime_mvc/application/models/Scheduler.php index 95454eeb4..664c40504 100644 --- a/airtime_mvc/application/models/Scheduler.php +++ b/airtime_mvc/application/models/Scheduler.php @@ -331,7 +331,7 @@ class Application_Model_Scheduler * This function squeezes all items of a show together so that * there are no gaps between them. */ - private function removeGaps($showInstance, $exclude=null) + public function removeGaps($showInstance, $exclude=null) { Logging::info("removing gaps from show instance #".$showInstance); diff --git a/airtime_mvc/application/models/ShowInstance.php b/airtime_mvc/application/models/ShowInstance.php index f782ae076..b08a0e37c 100644 --- a/airtime_mvc/application/models/ShowInstance.php +++ b/airtime_mvc/application/models/ShowInstance.php @@ -187,12 +187,12 @@ SQL; if ($diff != 0) { $sql = << $diff, ':diff2' => $diff, ':instanceId' => $instance_id ), 'execute'); @@ -345,7 +345,7 @@ SQL; //$sql = "SELECT timestamp '{$ends}' + interval '{$deltaDay} days' + interval '{$hours}:{$mins}'"; $sql = "SELECT timestamp :ends + interval :deltaDays + interval :deltaTime"; - $now_ends = Application_Common_Database::prepareAndExecute($sql, + $now_ends = Application_Common_Database::prepareAndExecute($sql, array(':ends' => $ends, ':deltaDays' => "$deltaDay days", ':deltaTime' => "{$hours}:{$mins}"), 'column' @@ -765,7 +765,7 @@ WHERE si.ends < :timeNow::TIMESTAMP AND si.modified_instance = 'f' ORDER BY si.ends DESC LIMIT 1; SQL; - $id = Application_Common_Database( $sql, array( + $id = Application_Common_Database( $sql, array( ':timeNow' => $p_timeNow ), 'column' ); return ($id ? new Application_Model_ShowInstance($id) : null ); @@ -818,7 +818,7 @@ SELECT count(*) AS cnt FROM cc_show_instances WHERE ends < :day SQL; - return Application_Common_Database::prepareAndExecute( $sql, + return Application_Common_Database::prepareAndExecute( $sql, array( ':day' => $day ), 'column' ); }