diff options
author | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-12-31 15:47:41 +0000 |
---|---|---|
committer | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-12-31 15:47:41 +0000 |
commit | cc8554abadc047469087fcd4f8f469ba733fceb0 (patch) | |
tree | a9837273d0142dfc649feb2b031158db4105a4f9 /mod/blog | |
parent | 24ef7261d523155ee1c58e8297516e726b4ce80b (diff) | |
download | elgg-cc8554abadc047469087fcd4f8f469ba733fceb0.tar.gz elgg-cc8554abadc047469087fcd4f8f469ba733fceb0.tar.bz2 |
file index page now working for both users and groups
git-svn-id: http://code.elgg.org/elgg/trunk@7790 36083f99-b078-4883-b0ff-0f9b5a30f544
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 354bf561d..c0b24f92e 100644 --- a/mod/blog/lib/blog.php +++ b/mod/blog/lib/blog.php @@ -82,7 +82,7 @@ function blog_get_page_content_list($container_guid = NULL) { if ($container_guid == $loggedin_userid) { $return['filter_context'] = 'mine'; - } else{ + } else { // do not show button or select a tab when viewing someone else's posts $return['filter_context'] = 'none'; $return['buttons'] = ''; |