diff --git a/core/modules/tracker/tracker.pages.inc b/core/modules/tracker/tracker.pages.inc index 36fd397..4c40be5 100644 --- a/core/modules/tracker/tracker.pages.inc +++ b/core/modules/tracker/tracker.pages.inc @@ -61,9 +61,7 @@ function tracker_page($account = NULL) { // The node ID may not be unique; there can be multiple comment fields. // Make comment_count the total of all comments. $nid = $statistics->entity_id; - if (empty($nodes[$nid]->comment_count) - || !is_numeric($nodes[$nid]->comment_count) - ) { + if (empty($nodes[$nid]->comment_count) || !is_numeric($nodes[$nid]->comment_count)) { $nodes[$nid]->comment_count = $statistics->comment_count; } else {