Index: CHANGELOG.txt
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/upgrade_status/CHANGELOG.txt,v
retrieving revision 1.2
diff -u -p -r1.2 CHANGELOG.txt
--- CHANGELOG.txt	31 May 2008 05:12:59 -0000	1.2
+++ CHANGELOG.txt	31 May 2008 18:30:30 -0000
@@ -6,6 +6,7 @@ Upgrade Status x.x-x.x, xxxx-xx-xx
 
 Upgrade Status 5.x-1.x, xxxx-xx-xx
 ----------------------------------
+#264980 by sun: Removed upgrade_status from list output.
 Added pointer to Coder module to help porting modules.
 Fixed wrong URL for manually updating.
 Removed superfluous help text.
Index: upgrade_status.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/upgrade_status/upgrade_status.module,v
retrieving revision 1.4
diff -u -p -r1.4 upgrade_status.module
--- upgrade_status.module	31 May 2008 05:12:59 -0000	1.4
+++ upgrade_status.module	31 May 2008 18:29:55 -0000
@@ -369,6 +369,10 @@ function theme_upgrade_status_report($da
   $rows = array();
 
   foreach ($data as $project) {
+    // Skip upgrade_status. Doesn't make sense to display it.
+    if ($project['name'] == 'upgrade_status') {
+      continue;
+    }
     switch ($project['status']) {
       case UPGRADE_STATUS_STABLE:
         $class = 'ok';
