CC-5594 : Remove all date_default_timezone_get()

missed a place to set show timezone,
setting UTC timezone in CcSchedule, very important!!
This commit is contained in:
Naomi 2013-12-05 15:57:00 -05:00
parent b1842fff34
commit ec6a991090
2 changed files with 13 additions and 12 deletions

View file

@ -187,7 +187,7 @@ class Application_Service_ShowFormService
'add_show_end_date_no_repeat' => $showEnd->format("Y-m-d"),
'add_show_end_time' => $showEnd->format("H:i"),
'add_show_duration' => $this->calculateDuration(
$showStart->format("Y-m-d H:i:s"), $showEnd->format("Y-m-d H:i:s")),
$showStart->format("Y-m-d H:i:s"), $showEnd->format("Y-m-d H:i:s"), $timezone),
'add_show_timezone' => $timezone,
'add_show_repeats' => 0));