From 99cc75ef51fb49f91257ff0d34e3f1d66c3f4bfd Mon Sep 17 00:00:00 2001 From: Naomi Date: Fri, 31 May 2013 11:42:35 -0400 Subject: [PATCH] users can open the current show to schedule and also rebroadcast shows. --- airtime_mvc/application/services/CalendarService.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/airtime_mvc/application/services/CalendarService.php b/airtime_mvc/application/services/CalendarService.php index 0db7d4e2d..dd1b8751c 100644 --- a/airtime_mvc/application/services/CalendarService.php +++ b/airtime_mvc/application/services/CalendarService.php @@ -75,11 +75,11 @@ class Application_Service_CalendarService } } else { //Show content can be modified from the calendar if: - // the show has not started, + // the show has not ended, // the user is admin or hosting the show, - // the show is not recorded or rebroadcasted - if ($now < $start && ($isAdminOrPM || $isHostOfShow) && - !$this->ccShowInstance->isRecorded() && !$this->ccShowInstance->isRebroadcast()) { + // the show is not recorded + if ($now < $end && ($isAdminOrPM || $isHostOfShow) && + !$this->ccShowInstance->isRecorded() ) { $menu["schedule"] = array( "name"=> _("Add / Remove Content"),