summaryrefslogtreecommitdiff
path: root/modules/blog/blog.module
diff options
context:
space:
mode:
Diffstat (limited to 'modules/blog/blog.module')
-rw-r--r--modules/blog/blog.module10
1 files changed, 1 insertions, 9 deletions
diff --git a/modules/blog/blog.module b/modules/blog/blog.module
index 50db6cb7a..805e458e1 100644
--- a/modules/blog/blog.module
+++ b/modules/blog/blog.module
@@ -222,13 +222,6 @@ function blog_form(&$node) {
}
/**
- * Implementation of hook_content().
- */
-function blog_content($node, $teaser = FALSE) {
- return node_prepare($node, $teaser);
-}
-
-/**
* Implementation of hook_view().
*/
function blog_view(&$node, $teaser = FALSE, $page = FALSE) {
@@ -239,8 +232,7 @@ function blog_view(&$node, $teaser = FALSE, $page = FALSE) {
$breadcrumb[] = array('path' => 'node/'. $node->nid);
menu_set_location($breadcrumb);
}
- // prepare the node content
- $node = blog_content($node, $teaser);
+ $node = node_prepare($node, $teaser);;
}
/**