From a82b5143cfb0c3ddbf9ff9d4a0da341fd2a3e433 Mon Sep 17 00:00:00 2001 From: Steven Wittens Date: Tue, 14 Sep 2004 21:03:23 +0000 Subject: Removing useless 'read more' title attribute, as discussed. --- modules/node.module | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'modules/node.module') diff --git a/modules/node.module b/modules/node.module index 4437c00c7..c7497a04c 100644 --- a/modules/node.module +++ b/modules/node.module @@ -85,7 +85,7 @@ function node_help_page() { function node_title_list($result, $title = NULL) { while ($node = db_fetch_object($result)) { $number = module_invoke('comment', 'num_all', $node->nid); - $items[] = l($node->title, 'node/'. $node->nid, array('title' => $number ? format_plural($number, '1 comment', '%count comments') : t('read more'))); + $items[] = l($node->title, 'node/'. $node->nid, $number ? array('title' => format_plural($number, '1 comment', '%count comments')) : ''); } return theme('node_list', $items, $title); -- cgit v1.2.3