From ba4cb16171a6093067219aae8cb5c25aae629bd4 Mon Sep 17 00:00:00 2001 From: denise Date: Wed, 6 Feb 2013 14:35:39 -0500 Subject: [PATCH] CC-4925: Changing User permissions to a higher level ends up with show editing problems -typo --- 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 20214f093..1a908ec63 100644 --- a/airtime_mvc/application/controllers/ScheduleController.php +++ b/airtime_mvc/application/controllers/ScheduleController.php @@ -576,7 +576,7 @@ class ScheduleController extends Zend_Controller_Action // in case a user was once a dj and had been assigned to a show // but was then changed to an admin user we need to allow // the user to edit the show as an admin (CC-4925) - if ($isDJ && !$idAdminOrPM) { + if ($isDJ && !$isAdminOrPM) { $this->view->action = "dj-edit-show"; }