CC-2628: update a repeated show start time cause the show to get corrupted

-disabled dragging + dropping repeated show instances
This commit is contained in:
martin 2011-08-18 18:13:43 -04:00
parent fc66b1d1ba
commit 846e08699e
4 changed files with 42 additions and 62 deletions

View file

@ -80,19 +80,19 @@ class ScheduleController extends Zend_Controller_Action
public function moveShowAction()
{
$deltaDay = $this->_getParam('day');
$deltaMin = $this->_getParam('min');
$showInstanceId = $this->_getParam('showInstanceId');
$deltaMin = $this->_getParam('min');
$showInstanceId = $this->_getParam('showInstanceId');
$userInfo = Zend_Auth::getInstance()->getStorage()->read();
$user = new User($userInfo->id);
if($user->isUserType(array(UTYPE_ADMIN, UTYPE_PROGRAM_MANAGER))) {
$show = new ShowInstance($showInstanceId);
$error = $show->moveShow($deltaDay, $deltaMin);
$show = new ShowInstance($showInstanceId);
$error = $show->moveShow($deltaDay, $deltaMin);
}
if(isset($error))
$this->view->error = $error;
if(isset($error))
$this->view->error = $error;
}