From 3bc919affbf3a6df94a10e32c37b2f469702a725 Mon Sep 17 00:00:00 2001 From: Martin Konecny Date: Tue, 24 Apr 2012 17:52:07 -0400 Subject: [PATCH] CC-3696: more rebroadcast show instances will be created after change the calendar -fixed --- airtime_mvc/application/models/Show.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/airtime_mvc/application/models/Show.php b/airtime_mvc/application/models/Show.php index 85107dfad..67914093f 100644 --- a/airtime_mvc/application/models/Show.php +++ b/airtime_mvc/application/models/Show.php @@ -856,8 +856,8 @@ class Application_Model_Show { ." WHERE date(starts) = date(TIMESTAMP '$timestamp') " ." AND show_id = $showId"; - $query = $con->query(); - $row = $query ? $query->fetchColumn(0) : null; + $query = $con->query($sql); + $row = ($query !== false) ? $query->fetchColumn(0) : null; return CcShowInstancesQuery::create() ->findPk($row); }