From b18f76ec42adcc854781a1098cabccdb457e131f Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Tue, 2 May 2006 13:28:04 +0000 Subject: - Patch #60849 by Zen: fixed typo in aggregator. --- modules/aggregator/aggregator.module | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'modules/aggregator') diff --git a/modules/aggregator/aggregator.module b/modules/aggregator/aggregator.module index 772cffde8..906f6b952 100644 --- a/modules/aggregator/aggregator.module +++ b/modules/aggregator/aggregator.module @@ -75,7 +75,7 @@ function aggregator_menu($may_cache) { 'title' => t('list'), 'type' => MENU_DEFAULT_LOCAL_TASK, 'weight' => -10); - + $items[] = array('path' => 'aggregator', 'title' => t('news aggregator'), 'callback' => 'aggregator_page_last', @@ -100,7 +100,7 @@ function aggregator_menu($may_cache) { 'callback' => 'aggregator_page_opml', 'access' => $view, 'type' => MENU_CALLBACK); - + $result = db_query('SELECT title, cid FROM {aggregator_category} ORDER BY title'); while ($category = db_fetch_array($result)) { $items[] = array('path' => 'aggregator/categories/'. $category['cid'], @@ -1177,7 +1177,7 @@ function aggregator_page_rss() { switch (variable_get('feed_item_length', 'teaser')) { case 'teaser': $teaser = node_teaser($item->description); - if ($teaser != $item_description) { + if ($teaser != $item->description) { $teaser .= '

'. t('read more') ."

\n"; } $item->description = $teaser; -- cgit v1.2.3