From ff6976f619279e1d6ce68db945e30ff0b7075ffb Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Mon, 17 Mar 2003 20:09:34 +0000 Subject: - Fixed broken URL in the blog module's feed. Reported by Gunnar. --- modules/blog/blog.module | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'modules/blog') diff --git a/modules/blog/blog.module b/modules/blog/blog.module index f8cd33d1f..cc5c7aca7 100644 --- a/modules/blog/blog.module +++ b/modules/blog/blog.module @@ -96,7 +96,7 @@ function blog_feed_user($uid = 0) { function blog_feed_last() { $result = db_query_range("SELECT n.nid, n.title, n.teaser, n.created, u.name, u.uid FROM node n LEFT JOIN users u ON n.uid = u.uid WHERE n.type = 'blog' AND n.status = 1 ORDER BY n.nid DESC", 0, 15); $channel["title"] = variable_get("site_name", "drupal") ." blogs"; - $channel["link"] = url("blog/view"); + $channel["link"] = url("blog"); $channel["description"] = $term->description; node_feed($result, $channel); } -- cgit v1.2.3