Replace all timestamp strings with constant
This commit is contained in:
parent
9d60a3d130
commit
5fe70754bd
23 changed files with 137 additions and 132 deletions
|
@ -236,8 +236,8 @@ class ShowbuilderController extends Zend_Controller_Action
|
|||
$end->setTimezone($displayTimeZone);
|
||||
|
||||
$show_name = $instance->getCcShow()->getDbName();
|
||||
$start_time = $start->format("Y-m-d H:i:s");
|
||||
$end_time = $end->format("Y-m-d H:i:s");
|
||||
$start_time = $start->format(DEFAULT_TIMESTAMP_FORMAT);
|
||||
$end_time = $end->format(DEFAULT_TIMESTAMP_FORMAT);
|
||||
|
||||
$this->view->title = "{$show_name}: {$start_time} - {$end_time}";
|
||||
$this->view->start = $start_time;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue