From f0be7cc995008189ebf07aefa0586cd969fa21ba Mon Sep 17 00:00:00 2001 From: James Date: Wed, 11 Apr 2012 16:06:10 -0400 Subject: [PATCH] - comments and removing logging --- airtime_mvc/application/models/Schedule.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/airtime_mvc/application/models/Schedule.php b/airtime_mvc/application/models/Schedule.php index 8394fb13c..255fba75a 100644 --- a/airtime_mvc/application/models/Schedule.php +++ b/airtime_mvc/application/models/Schedule.php @@ -114,6 +114,7 @@ class Application_Model_Schedule { $timeNowAsMillis = strtotime($p_timeNow); for( $i = 0; $i < $numberOfRows; ++$i ){ + // if the show is overbooked, then update the track end time to the end of the show time. if($rows[$i]['ends'] > $rows[$i]["show_ends"]){ $rows[$i]['ends'] = $rows[$i]["show_ends"]; } @@ -355,7 +356,6 @@ class Application_Model_Schedule { $secParts = explode(".", $t[2]); $millisecs = $secParts[1]; $millisecs = str_pad(substr($millisecs, 0, 3),3, '0'); - Logging::log("mili:".print_r($millisecs,true)); $millisecs = intval($millisecs); $seconds = intval($secParts[0]); } else {