CC-3334: Upgrade notification reports there is an upgrade when user has a later version than the official released version

- I've updated the comment to read the difference between 1.9.5 and version 3.0.0 is calculated as 105
- I've also updated the checking logic to make the first outdated anything below 20 and the second outdated between 20 and 29.
This commit is contained in:
Daniel 2012-02-27 17:28:06 -05:00
parent f030cf4f67
commit 9736fd7deb
1 changed files with 3 additions and 3 deletions

View File

@ -27,7 +27,7 @@ class Airtime_View_Helper_VersionNotify extends Zend_View_Helper_Abstract{
}
// Calculate the version difference;
// Example: if current = 1.9.5 and latest = 3.0.0, diff = 115
// Example: if current = 1.9.5 and latest = 3.0.0, diff = 105
// Note: algorithm assumes the number after 1st dot never goes above 9
$versionDifference = (intval($latestExploded[0]) * 100 + intval($latestExploded[1]) *10 + intval($latestExploded[2]))
- (intval($currentExploded[0]) * 100 + intval($currentExploded[1] *10 + intval($currentExploded[2])));
@ -36,10 +36,10 @@ class Airtime_View_Helper_VersionNotify extends Zend_View_Helper_Abstract{
if($versionDifference <= 0) {
// current version is up to date or newer
$class = "uptodate";
} else if($versionDifference <= 20) {
} else if($versionDifference < 20) {
// 2 or less major versions back
$class = "update";
} else if($versionDifference == 30) {
} else if($versionDifference < 30) {
// 3 major versions back
$class = "update2";
} else {