From 2e0b29b14e29e1f5c176ae8fbc3cc0a09c27fe3f Mon Sep 17 00:00:00 2001 From: Rudi Grinberg Date: Mon, 10 Sep 2012 15:31:56 -0400 Subject: [PATCH] Removed unused code --- airtime_mvc/application/models/Schedule.php | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/airtime_mvc/application/models/Schedule.php b/airtime_mvc/application/models/Schedule.php index f97b21325..925dcd54b 100644 --- a/airtime_mvc/application/models/Schedule.php +++ b/airtime_mvc/application/models/Schedule.php @@ -1122,12 +1122,6 @@ SQL; */ //$se = $show_end->format('Y-m-d H:i:s'); if ($update) { - $sql = "SELECT id, starts, ends FROM ".$CC_CONFIG["showInstances"]." - where (ends <= '{$show_end->format('Y-m-d H:i:s')}' - or starts <= '{$show_end->format('Y-m-d H:i:s')}') - and date(starts) >= (date('{$show_end->format('Y-m-d H:i:s')}') - INTERVAL '2 days') - and modified_instance = false and id != ".$instanceId. " order by ends"; - $stmt = $con->prepare("SELECT id, starts, ends FROM {$CC_CONFIG['showInstances']} where (ends <= :show_end1 or starts <= :show_end2) @@ -1141,13 +1135,6 @@ SQL; ':instanceId' => $instanceId )); } else { - // TODO : Remove raw sql later - $sql = "SELECT id, starts, ends FROM ".$CC_CONFIG["showInstances"]." - where (ends <= '{$show_end->format('Y-m-d H:i:s')}' - or starts <= '{$show_end->format('Y-m-d H:i:s')}') - and date(starts) >= (date('{$show_end->format('Y-m-d H:i:s')}') - INTERVAL '2 days') - and modified_instance = false order by ends"; - $stmt = $con->prepare("SELECT id, starts, ends FROM {$CC_CONFIG['showInstances']} where (ends <= :show_end1 or starts <= :show_end2)