From e0c53afe0b3ee1d3019abfe02886b1fa11dfc380 Mon Sep 17 00:00:00 2001 From: denise Date: Tue, 15 May 2012 15:43:06 -0400 Subject: [PATCH] CC-3796: If you change the show's start and end time, the length of content will be displayed as ".00" -fixed --- airtime_mvc/application/models/ShowInstance.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/airtime_mvc/application/models/ShowInstance.php b/airtime_mvc/application/models/ShowInstance.php index f1dd07cd3..3a078bf1e 100644 --- a/airtime_mvc/application/models/ShowInstance.php +++ b/airtime_mvc/application/models/ShowInstance.php @@ -574,7 +574,7 @@ class Application_Model_ShowInstance { { $time = $this->_showInstance->getDbTimeFilled(); - if ($time != "00:00:00") { + if ($time != "00:00:00" && $time != null && strcmp($time, '')!=0) { $time_arr = explode(".", $time); if (count($time_arr) > 1) { $time_arr[1] = "." . $time_arr[1];