From 2fc591db2bddc4facaa8f7fb9535e767be970623 Mon Sep 17 00:00:00 2001 From: denise Date: Mon, 16 Apr 2012 17:09:54 -0400 Subject: [PATCH] CC-3498: Calendar -> Show Content better representation of duration needed -fixed --- airtime_mvc/application/models/ShowInstance.php | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/airtime_mvc/application/models/ShowInstance.php b/airtime_mvc/application/models/ShowInstance.php index 7e21d1376..ea7ef121b 100644 --- a/airtime_mvc/application/models/ShowInstance.php +++ b/airtime_mvc/application/models/ShowInstance.php @@ -569,8 +569,10 @@ class Application_Model_ShowInstance { $time = $this->_showInstance->getDbTimeFilled(); if ($time != "00:00:00") { - $milliseconds = substr(round(substr($time, 8), 2), 1); - $time = substr($time, 0, 8) . $milliseconds; + $time_arr = explode(".", $time); + $time_arr[1] = "." . $time_arr[1]; + $milliseconds = number_format(round($time_arr[1], 2), 2); + $time = $time_arr[0] . substr($milliseconds, 1); } else { $time = "00:00:00.00"; }