From 49ed0cf0f18c46d5f863bbfdfe4dcde18f1dd780 Mon Sep 17 00:00:00 2001 From: drigato Date: Wed, 4 Dec 2013 14:28:16 -0500 Subject: [PATCH] CC-5405: When editing a single show instance from a repeating series, should not create a new cc_show Removed redundant function call to update last_scheduled column on a cc_show_instance --- airtime_mvc/application/services/ShowService.php | 3 --- 1 file changed, 3 deletions(-) diff --git a/airtime_mvc/application/services/ShowService.php b/airtime_mvc/application/services/ShowService.php index 992ddd0aa..76c60b80b 100644 --- a/airtime_mvc/application/services/ShowService.php +++ b/airtime_mvc/application/services/ShowService.php @@ -134,9 +134,6 @@ class Application_Service_ShowService $updateCriteria->add(CcSchedulePeer::INSTANCE_ID, $ccShowInstance->getDbId()); BasePeer::doUpdate($selectCriteria, $updateCriteria, $con); - $ccShowInstance - ->setDbLastScheduled(gmdate("Y-m-d H:i:s")) - ->save(); $ccShowInstance->updateDbTimeFilled($con); $ccShowInstance->updateScheduleStatus($con);