From 0221e61258f58dc98449c69b81c879f3e91ed777 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=A1bor=20Hojtsy?= Date: Mon, 28 Jan 2008 15:51:29 +0000 Subject: [PATCH] #213657 by dopry and moshe weitzman: typo in rss feed build mode and better link handling --- modules/node/node.module | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/modules/node/node.module b/modules/node/node.module index 2cbd0bdef1a..c748965ff93 100644 --- a/modules/node/node.module +++ b/modules/node/node.module @@ -1644,8 +1644,8 @@ function node_feed($nids = FALSE, $channel = array()) { foreach ($nids as $nid) { // Load the specified node: $item = node_load($nid); - $node->build_mode = NODE_BUILD_RSS; - $link = url("node/$nid", array('absolute' => TRUE)); + $item->build_mode = NODE_BUILD_RSS; + $item->link = url("node/$nid", array('absolute' => TRUE)); if ($item_length != 'title') { $teaser = ($item_length == 'teaser') ? TRUE : FALSE; @@ -1687,7 +1687,7 @@ function node_feed($nids = FALSE, $channel = array()) { break; } - $items .= format_rss_item($item->title, $link, $item_text, $extra); + $items .= format_rss_item($item->title, $item->link, $item_text, $extra); } $channel_defaults = array(