From 97989953c87bb47d229dc8e597bfcb9077a0650e Mon Sep 17 00:00:00 2001 From: Naomi Date: Wed, 12 Mar 2014 18:00:01 -0400 Subject: [PATCH] CC-5727 : History search range using incorrect timezone offset (also Nowplaying & Listener Stats) need to modify these to user timezone strings to match the new changes. --- airtime_mvc/application/controllers/ShowbuilderController.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/airtime_mvc/application/controllers/ShowbuilderController.php b/airtime_mvc/application/controllers/ShowbuilderController.php index c7de2cdc6..7df1bb7ad 100644 --- a/airtime_mvc/application/controllers/ShowbuilderController.php +++ b/airtime_mvc/application/controllers/ShowbuilderController.php @@ -230,8 +230,8 @@ class ShowbuilderController extends Zend_Controller_Action $end_time = $end->format("Y-m-d H:i:s"); $this->view->title = "{$show_name}: {$start_time} - {$end_time}"; - $this->view->start = $instance->getDbStarts("U"); - $this->view->end = $instance->getDbEnds("U"); + $this->view->start = $start_time; + $this->view->end = $end_time; $this->view->dialog = $this->view->render('showbuilder/builderDialog.phtml'); }