Index: modules/tracker.module
===================================================================
RCS file: /cvs/drupal/drupal/modules/tracker.module,v
retrieving revision 1.87
diff -u -r1.87 tracker.module
--- modules/tracker.module	6 Jul 2004 07:38:35 -0000	1.87
+++ modules/tracker.module	7 Jul 2004 23:10:27 -0000
@@ -52,19 +52,15 @@
 
   while ($node = db_fetch_object($result)) {
     // Determine the number of comments:
-    if (module_exist('comment')) {
-      if ($all = comment_num_all($node->nid)) {
-        $comments = $all;
-
-        if ($new = comment_num_new($node->nid)) {
-          $comments .= '<br />';
-          $comments .= l(t('%num new', array('%num' => $new)), "node/$node->nid", NULL, NULL, 'new');
-        }
+    $comments = 0;
+    if (module_exist('comment') && $all = comment_num_all($node->nid)) {
+      $comments = $all;
+
+      if ($new = comment_num_new($node->nid)) {
+        $comments .= '<br />';
+        $comments .= l(t('%num new', array('%num' => $new)), "node/$node->nid", NULL, NULL, 'new');
       }
     }
-    else {
-      $comments = 0;
-    }
 
     $rows[] = array(
       ucfirst(node_invoke($node->type, 'node_name')),
