From 1dfcfd3e347bd64595c394ef7e5f7e98c1de934d Mon Sep 17 00:00:00 2001 From: drigato Date: Fri, 13 Dec 2013 14:20:43 -0500 Subject: [PATCH] CC-5639: Repeating show's instances will vanish when editing single instance with overlapping warning The wrong action was getting set when there were errors in the show form --- 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 91d56bd74..a430e15e5 100644 --- a/airtime_mvc/application/controllers/ScheduleController.php +++ b/airtime_mvc/application/controllers/ScheduleController.php @@ -450,7 +450,7 @@ class ScheduleController extends Zend_Controller_Action } $this->view->rr->getElement('add_show_record')->setOptions(array('disabled' => true)); $this->view->addNewShow = false; - $this->view->action = "edit-show"; + $this->view->action = "edit-repeating-show-instance"; $this->view->form = $this->view->render('schedule/add-show-form.phtml'); } }