summaryrefslogtreecommitdiff
path: root/modules/blog
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2009-05-21 21:12:25 +0000
committerDries Buytaert <dries@buytaert.net>2009-05-21 21:12:25 +0000
commit02c8592759c5b33d3d94fe6a515f10af4317dd5c (patch)
tree570ec558b6f70565d40a3e4f30cac3515c752c48 /modules/blog
parent51948a790b92a44e6d1bccb62332cbd413b36f00 (diff)
downloadbrdo-02c8592759c5b33d3d94fe6a515f10af4317dd5c.tar.gz
brdo-02c8592759c5b33d3d94fe6a515f10af4317dd5c.tar.bz2
- Patch #428744 by Gabor: make the main page content a real block and clean up some of the content API.
Diffstat (limited to 'modules/blog')
-rw-r--r--modules/blog/blog.pages.inc4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/blog/blog.pages.inc b/modules/blog/blog.pages.inc
index b6b0346f5..ace4f8ece 100644
--- a/modules/blog/blog.pages.inc
+++ b/modules/blog/blog.pages.inc
@@ -60,7 +60,7 @@ function blog_page_user($account) {
}
drupal_add_feed(url('blog/' . $account->uid . '/feed'), t('RSS - !title', array('!title' => $title)));
- return drupal_get_page($build);
+ return $build;
}
/**
@@ -104,7 +104,7 @@ function blog_page_last() {
}
drupal_add_feed(url('blog/feed'), t('RSS - blogs'));
- return drupal_get_page($build);
+ return $build;
}
/**