diff options
Diffstat (limited to 'modules/blog/blog.module')
-rw-r--r-- | modules/blog/blog.module | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/blog/blog.module b/modules/blog/blog.module index 45007956b..faad60764 100644 --- a/modules/blog/blog.module +++ b/modules/blog/blog.module @@ -149,7 +149,7 @@ function blog_page_user($uid) { $output .= theme('xml_icon', url("blog/$account->uid/feed")); drupal_set_html_head('<link rel="alternate" type="application/rss+xml" title="RSS - '. $title .'" href="'. url("blog/$account->uid/feed") .'" />'); - print theme('page', $output); + return $output; } else { drupal_not_found(); @@ -173,7 +173,7 @@ function blog_page_last() { $output .= theme('xml_icon', url('blog/feed')); drupal_set_html_head('<link rel="alternate" type="application/rss+xml" title="RSS - blogs" href="'. url('blog/feed') .'" />'); - print theme('page', $output); + return $output; } /** |