Index: modules/update/update.report.inc
===================================================================
RCS file: /cvs/drupal/drupal/modules/update/update.report.inc,v
retrieving revision 1.9
diff -u -p -u -p -r1.9 update.report.inc
--- modules/update/update.report.inc	30 Jan 2008 10:14:42 -0000	1.9
+++ modules/update/update.report.inc	1 Feb 2008 18:15:29 -0000
@@ -225,10 +225,15 @@ function theme_update_version($version, 
   $output .= "</td>\n";
   $output .= '<td class="version-links">';
   $links = array();
-  $links['update-download'] = array(
-    'title' => t('Download'),
-    'href' => $version['download_link'],
-  );
+  if (module_exists('cvs_deploy')) {
+    $output .= '<span class="cvs-tag">CVS tag: '. $version['tag'] .'</span>';
+  }
+  else {
+    $links['update-download'] = array(
+      'title' => t('Download'),
+      'href' => $version['download_link'],
+    );
+  }
   $links['update-release-notes'] = array(
     'title' => t('Release notes'),
     'href' => $version['release_link'],
