diff options
Diffstat (limited to 'mod/blog/lib/blog.php')
-rw-r--r-- | mod/blog/lib/blog.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mod/blog/lib/blog.php b/mod/blog/lib/blog.php index 035105a7d..f3d059ae3 100644 --- a/mod/blog/lib/blog.php +++ b/mod/blog/lib/blog.php @@ -47,7 +47,7 @@ function blog_get_page_content_list($owner_guid = NULL) { $return = array(); - $return['filter_context'] = $owner_guid ? 'mine' : 'everyone'; + $return['filter_context'] = $owner_guid ? 'mine' : 'all'; $options = array( 'type' => 'object', @@ -74,7 +74,7 @@ function blog_get_page_content_list($owner_guid = NULL) { $return['buttons'] = ''; } } else { - $return['filter_context'] = 'everyone'; + $return['filter_context'] = 'all'; } // show all posts for admin or users looking at their own blogs |