Index: modules/update_status/update_status.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/update_status/update_status.module,v
retrieving revision 1.83.2.30
diff -u -p -r1.83.2.30 update_status.module
--- modules/update_status/update_status.module	27 Jan 2008 18:05:04 -0000	1.83.2.30
+++ modules/update_status/update_status.module	1 Feb 2008 18:51:39 -0000
@@ -1007,13 +1007,14 @@ function update_status_calculate_project
 
         // See if this is a higher major version than our target and yet still
         // supported. If so, record it as an "Also available" release.
-        if ($release['version_major'] > $target_major &&
-            in_array($release['version_major'], $supported_majors)) {
-          if (!isset($available[$project]['also'])) {
-            $available[$project]['also'] = array();
-          }
-          if (!isset($available[$project]['also'][$release['version_major']])) {
-            $available[$project]['also'][$release['version_major']] = $version;
+        if ($release['version_major'] > $target_major) {
+          if (in_array($release['version_major'], $supported_majors)) {
+            if (!isset($available[$project]['also'])) {
+              $available[$project]['also'] = array();
+            }
+            if (!isset($available[$project]['also'][$release['version_major']])) {
+              $available[$project]['also'][$release['version_major']] = $version;
+            }
           }
           // Otherwise, this release can't matter to us, since it's neither
           // from the release series we're currently using nor the recommended
