From e0c53afe0b3ee1d3019abfe02886b1fa11dfc380 Mon Sep 17 00:00:00 2001 From: denise Date: Tue, 15 May 2012 15:43:06 -0400 Subject: [PATCH 1/2] 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]; From 2856d379b5c8d5fe2a0051679d283b09990b5241 Mon Sep 17 00:00:00 2001 From: Paul Baranowski Date: Tue, 15 May 2012 17:13:01 -0400 Subject: [PATCH 2/2] Fixed bug with upgrade notifications - it was always saying that your version is obsolete if the version was greater than 1 minor version. --- airtime_mvc/public/js/airtime/dashboard/versiontooltip.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/airtime_mvc/public/js/airtime/dashboard/versiontooltip.js b/airtime_mvc/public/js/airtime/dashboard/versiontooltip.js index 7e70e732e..10afb2864 100644 --- a/airtime_mvc/public/js/airtime/dashboard/versiontooltip.js +++ b/airtime_mvc/public/js/airtime/dashboard/versiontooltip.js @@ -6,11 +6,12 @@ function getContent() { var link = getLatestLink(); var msg = ""; + // See file airtime_mvc/application/views/helpers/VersionNotify.php for more info if(isUpToDate()) { msg = "You are running the latest version"; - } else if(diff <= 1) { // new version is possible when major diff = 0 + } else if (diff < 20) { msg = "New version available: " + link; - } else if(diff == 2) { + } else if (diff < 30) { msg = "This version will soon be obsolete.
Please upgrade to " + link; } else { msg = "This version is no longer supported.
Please upgrade to " + link;