diff --git a/modules/tracker.module b/modules/tracker.module
index 9b68752ae5f5037e89f4b95adf6e0d46246f6812..a8cc7439dbac5459f57ed4e8495ea2ecafa94e01 100644
--- a/modules/tracker.module
+++ b/modules/tracker.module
@@ -52,19 +52,15 @@ function tracker_page($uid = 0) {
 
   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')),
diff --git a/modules/tracker/tracker.module b/modules/tracker/tracker.module
index 9b68752ae5f5037e89f4b95adf6e0d46246f6812..a8cc7439dbac5459f57ed4e8495ea2ecafa94e01 100644
--- a/modules/tracker/tracker.module
+++ b/modules/tracker/tracker.module
@@ -52,19 +52,15 @@ function tracker_page($uid = 0) {
 
   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')),