summaryrefslogtreecommitdiff
path: root/modules/tracker/tracker.module
diff options
context:
space:
mode:
Diffstat (limited to 'modules/tracker/tracker.module')
-rw-r--r--modules/tracker/tracker.module14
1 files changed, 8 insertions, 6 deletions
diff --git a/modules/tracker/tracker.module b/modules/tracker/tracker.module
index 36791ecd6..9b68752ae 100644
--- a/modules/tracker/tracker.module
+++ b/modules/tracker/tracker.module
@@ -52,12 +52,14 @@ function tracker_page($uid = 0) {
while ($node = db_fetch_object($result)) {
// Determine the number of comments:
- 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');
+ 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');
+ }
}
}
else {