From 05e4195165e2ed6a3bb1925df48c3dc97bb028ec Mon Sep 17 00:00:00 2001 From: denise Date: Wed, 9 Oct 2013 17:24:16 -0400 Subject: [PATCH] CC-5390: Cannot drag & drop record show that has a rebroadcast Was using wrong method to query for the rebroadcast show's original recorded show --- airtime_mvc/application/services/CalendarService.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/airtime_mvc/application/services/CalendarService.php b/airtime_mvc/application/services/CalendarService.php index 01a770ead..73a2f3080 100644 --- a/airtime_mvc/application/services/CalendarService.php +++ b/airtime_mvc/application/services/CalendarService.php @@ -268,8 +268,8 @@ class Application_Service_CalendarService } if ($this->ccShow->isRebroadcast()) { - $recordedShow = CcShowInstancesQuery::create()->findPk( - $this->ccShowInstance->getDbOriginalShow()); + $recordedShow = CcShowInstancesQuery::create()->filterByCcShow( + $this->ccShowInstance->getDbOriginalShow())->findOne(); if (is_null($recordedShow)) { $this->ccShowInstance->delete(); throw new Exception(_("Show was deleted because recorded show does not exist!"));