#156392 by G?bor Hojtsy. Add comment module depenedency to tracker.

5.x
Neil Drumm 2007-07-09 03:33:58 +00:00
parent 41c363832f
commit 397c09da28
2 changed files with 2 additions and 1 deletions

View File

@ -1,5 +1,6 @@
; $Id$
name = Tracker
description = Enables tracking of recent posts for users.
dependencies = comment
package = Core - optional
version = VERSION

View File

@ -96,7 +96,7 @@ function tracker_page($uid = 0) {
while ($node = db_fetch_object($result)) {
// Determine the number of comments:
$comments = 0;
if (module_exists('comment') && $node->comment_count) {
if ($node->comment_count) {
$comments = $node->comment_count;
if ($new = comment_num_new($node->nid)) {