Index: update_status.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/update_status/update_status.module,v
retrieving revision 1.83.2.36
diff -u -p -r1.83.2.36 update_status.module
--- update_status.module	27 Jun 2008 16:18:58 -0000	1.83.2.36
+++ update_status.module	14 Aug 2008 07:03:01 -0000
@@ -967,7 +967,7 @@ function update_status_calculate_project
       }
       foreach ($available[$project]['releases'] as $version => $release) {
         // First, if this is the existing release, check a few conditions.
-        if ($projects[$project]['existing_version'] == $version) {
+        if (strcmp($projects[$project]['existing_version'], $version) == 0) {
           if (isset($release['terms']['Release type']) &&
               in_array('Insecure', $release['terms']['Release type'])) {
             $projects[$project]['status'] = UPDATE_STATUS_NOT_SECURE;
@@ -1055,7 +1055,7 @@ function update_status_calculate_project
         }
 
         // Stop searching once we hit the currently installed version.
-        if ($projects[$project]['existing_version'] == $version) {
+        if (strcmp($projects[$project]['existing_version'], $version) == 0) {
           break;
         }
 
