diff options
author | Dries Buytaert <dries@buytaert.net> | 2001-12-09 19:56:08 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2001-12-09 19:56:08 +0000 |
commit | 196cb82ed6312aaf4cdc80cc8dd96c2951b1f4d3 (patch) | |
tree | 703804a95977ebfe47e104103b5853372354dd89 /modules/blog.module | |
parent | 9da79bc8c47961a95b6be80cdd1092ccda91efde (diff) | |
download | brdo-196cb82ed6312aaf4cdc80cc8dd96c2951b1f4d3.tar.gz brdo-196cb82ed6312aaf4cdc80cc8dd96c2951b1f4d3.tar.bz2 |
- Fixed the links in one of the feeds.
Diffstat (limited to 'modules/blog.module')
-rw-r--r-- | modules/blog.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/blog.module b/modules/blog.module index 5d59d45b2..68c8fee83 100644 --- a/modules/blog.module +++ b/modules/blog.module @@ -128,7 +128,7 @@ function blog_feed_last() { $result = db_query("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' ORDER BY n.nid DESC LIMIT 15"); while ($blog = db_fetch_object($result)) { - $items .= format_rss_item($blog->title, path_uri() ."module.php?mod=blog&op=view&id=$blog->nid", $blog->teaser); + $items .= format_rss_item($blog->title, path_uri() ."node.php?id=$blog->nid", $blog->teaser); } $output .= "<?xml version=\"1.0\" encoding=\"ISO-8859-1\" ?>\n"; |