From 5dfaa00c257e10e85effdcf326b0f3b1caa18230 Mon Sep 17 00:00:00 2001 From: Naomi Aro Date: Tue, 3 Apr 2012 11:15:22 +0200 Subject: [PATCH] CC-3542 : When you delete the current show it takes all songs from that show out of the playout history --- airtime_mvc/application/models/Scheduler.php | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/airtime_mvc/application/models/Scheduler.php b/airtime_mvc/application/models/Scheduler.php index 30e5a385d..0b3005427 100644 --- a/airtime_mvc/application/models/Scheduler.php +++ b/airtime_mvc/application/models/Scheduler.php @@ -570,11 +570,13 @@ class Application_Model_Scheduler { } $this->removeItems($remove, false); + $instance->setDbEnds($this->nowDT); + $instance->save($this->con); } - - $instance->setDbEnds($this->nowDT); - $instance->save($this->con); - + else { + $instance->delete($this->con); + } + $this->con->commit(); } catch (Exception $e) {