From 9bed56a2c37e32e9e8a6eca98777612d45bb4b3b Mon Sep 17 00:00:00 2001 From: Naomi Aro Date: Fri, 17 Feb 2012 11:14:44 +0100 Subject: [PATCH] CC-3174 : showbuilder incorrect variable name fixed for updating last scheduled timestamp. --- airtime_mvc/application/models/Scheduler.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/airtime_mvc/application/models/Scheduler.php b/airtime_mvc/application/models/Scheduler.php index 40f977122..bb712568c 100644 --- a/airtime_mvc/application/models/Scheduler.php +++ b/airtime_mvc/application/models/Scheduler.php @@ -220,7 +220,7 @@ class Application_Model_Scheduler { //update the last scheduled timestamp. CcShowInstancesQuery::create() - ->filterByPrimaryKeys($showInstances) + ->filterByPrimaryKeys($affectedShowInstances) ->update(array('DbLastScheduled' => new DateTime("now", new DateTimeZone("UTC"))), $this->con); } catch (Exception $e) {