summaryrefslogtreecommitdiff
path: root/modules/node.module
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2003-09-12 18:13:22 +0000
committerDries Buytaert <dries@buytaert.net>2003-09-12 18:13:22 +0000
commitee35d9136e70cbafad2574089c6f346ab5a635ba (patch)
tree6fb851c3c2834da31c46ff53d1e9ba711e54198c /modules/node.module
parent9113a1ae280dd2387554be1bb3448b4e8da4b0e2 (diff)
downloadbrdo-ee35d9136e70cbafad2574089c6f346ab5a635ba.tar.gz
brdo-ee35d9136e70cbafad2574089c6f346ab5a635ba.tar.bz2
- Made the forum module's breadcrumb navigation fully themable. Patch by Nick.
- Changed 'pubdate' to 'pubDate'. Patch by Kristjan. - Fixed in Xtemplate theme; don't use return value of node_url() raw and uncut. Patch by me.
Diffstat (limited to 'modules/node.module')
-rw-r--r--modules/node.module2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/node.module b/modules/node.module
index 77667b614..35a90e347 100644
--- a/modules/node.module
+++ b/modules/node.module
@@ -1013,7 +1013,7 @@ function node_feed($nodes = 0, $channel = array()) {
foreach ($languages as $key => $value) break;
if (!$channel["language"]) $channel["language"] = $key ? $key : "en";
$output .= "<rss version=\"". $channel["version"] . "\">\n";
- $output .= format_rss_channel($channel["title"], $channel["link"], $channel["description"], $items, $channel["language"], array("pubdate" => date("r", $pubdate)));
+ $output .= format_rss_channel($channel["title"], $channel["link"], $channel["description"], $items, $channel["language"], array("pubDate" => date("r", $pubdate)));
$output .= "</rss>\n";
header("Content-Type: text/xml");