From bed360cd3ebe22cd8f39ced654e7a2070d25fc1a Mon Sep 17 00:00:00 2001 From: Rudi Grinberg Date: Thu, 6 Sep 2012 11:15:01 -0400 Subject: [PATCH] Formatting --- .../application/controllers/ScheduleController.php | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/airtime_mvc/application/controllers/ScheduleController.php b/airtime_mvc/application/controllers/ScheduleController.php index 58c2db1de..27239bee4 100644 --- a/airtime_mvc/application/controllers/ScheduleController.php +++ b/airtime_mvc/application/controllers/ScheduleController.php @@ -781,7 +781,10 @@ class ScheduleController extends Zend_Controller_Action $data['add_show_record'] = $show->isRecorded(); $origianlShowStartDateTime = Application_Common_DateHelper::ConvertToLocalDateTime($show->getStartDateAndTime()); - $success = Application_Model_Schedule::addUpdateShow($data, $this, $validateStartDate, $origianlShowStartDateTime, true, $data['add_show_instance_id']); + + $success = Application_Model_Schedule::addUpdateShow($data, $this, + $validateStartDate, $origianlShowStartDateTime, true, + $data['add_show_instance_id']); if ($success) { $this->view->addNewShow = true; @@ -818,14 +821,17 @@ class ScheduleController extends Zend_Controller_Action } $validateStartDate = true; - $success = Application_Model_Schedule::addUpdateShow($data, $this, $validateStartDate); + $success = Application_Model_Schedule::addUpdateShow($data, $this, + $validateStartDate); if ($success) { $this->view->addNewShow = true; - $this->view->newForm = $this->view->render('schedule/add-show-form.phtml'); + $this->view->newForm = $this->view->render( + 'schedule/add-show-form.phtml'); } else { $this->view->addNewShow = true; - $this->view->form = $this->view->render('schedule/add-show-form.phtml'); + $this->view->form = $this->view->render(' + schedule/add-show-form.phtml'); } }