diff options
author | Cash Costello <cash.costello@gmail.com> | 2011-06-26 06:41:39 -0400 |
---|---|---|
committer | Cash Costello <cash.costello@gmail.com> | 2011-06-26 06:41:39 -0400 |
commit | b0b197ee2e73974a8b0c080086945383a863410e (patch) | |
tree | 706726a6edcfc7edeb75e7363eadd9a2687d4d62 /mod/blog | |
parent | 12a4106d92db1fa3327e0cf32262544181602380 (diff) | |
download | elgg-b0b197ee2e73974a8b0c080086945383a863410e.tar.gz elgg-b0b197ee2e73974a8b0c080086945383a863410e.tar.bz2 |
Fixes #3614 updated use of elgg_view_entity() throughout core
Diffstat (limited to 'mod/blog')
-rw-r--r-- | mod/blog/lib/blog.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mod/blog/lib/blog.php b/mod/blog/lib/blog.php index 8964d5b53..6bdbc8b1f 100644 --- a/mod/blog/lib/blog.php +++ b/mod/blog/lib/blog.php @@ -38,7 +38,7 @@ function blog_get_page_content_read($guid = NULL) { } elgg_push_breadcrumb($blog->title); - $return['content'] = elgg_view_entity($blog, TRUE); + $return['content'] = elgg_view_entity($blog, array('full_view' => true)); //check to see if comment are on if ($blog->comments_on != 'Off') { $return['content'] .= elgg_view_comments($blog); |