From 5a86bd9ac4a871bc2c03fd2212a8c17b4803e0e2 Mon Sep 17 00:00:00 2001 From: denise Date: Wed, 15 May 2013 15:47:45 -0400 Subject: [PATCH] CC-5149: Linked show: Regular show will be treat as linked show in some case A new form was not getting sent to the user properly after a show creation --- airtime_mvc/application/controllers/ScheduleController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/airtime_mvc/application/controllers/ScheduleController.php b/airtime_mvc/application/controllers/ScheduleController.php index 93750dccd..b87018165 100644 --- a/airtime_mvc/application/controllers/ScheduleController.php +++ b/airtime_mvc/application/controllers/ScheduleController.php @@ -514,9 +514,9 @@ class ScheduleController extends Zend_Controller_Action if ($service_showForm->validateShowForms($forms, $data)) { $service_show->addUpdateShow($data); - $this->view->newForm = $this->view->render('schedule/add-show-form.phtml'); //send new show forms to the user $this->createShowFormAction(true); + $this->view->newForm = $this->view->render('schedule/add-show-form.phtml'); Logging::debug("Show creation succeeded"); } else {