From 21fe511dfa6727f0a0ef43865f953fac78e32c30 Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Thu, 10 May 2007 19:57:13 +0000 Subject: - Patch #142897 by erdemkose: corrected the argument: should be empty array instead of empty string. --- modules/node/node.module | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'modules/node/node.module') diff --git a/modules/node/node.module b/modules/node/node.module index c96606a94..d0ad4ea10 100644 --- a/modules/node/node.module +++ b/modules/node/node.module @@ -97,7 +97,7 @@ function node_cron() { */ function node_title_list($result, $title = NULL) { while ($node = db_fetch_object($result)) { - $items[] = l($node->title, 'node/'. $node->nid, !empty($node->comment_count) ? array('title' => format_plural($node->comment_count, '1 comment', '@count comments')) : ''); + $items[] = l($node->title, 'node/'. $node->nid, !empty($node->comment_count) ? array('title' => format_plural($node->comment_count, '1 comment', '@count comments')) : array()); } return theme('node_list', $items, $title); -- cgit v1.2.3