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.
This commit is contained in:
Naomi 2014-03-12 18:00:01 -04:00
parent 7078180da0
commit 97989953c8

View file

@ -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');
}