Skip to:
Content

BuddyPress.org

Ticket #2293: no_nonmember_comments_on_nonpublic_activity.patch

File no_nonmember_comments_on_nonpublic_activity.patch, 893 bytes (added by boonebgorges, 14 years ago)
  • bp-activity/bp-activity-templatetags.php

     
    818818                if ( 'new_blog_post' == bp_get_activity_action_name() || 'new_blog_comment' == bp_get_activity_action_name() || 'new_forum_topic' == bp_get_activity_action_name() || 'new_forum_post' == bp_get_activity_action_name() )
    819819                        return false;
    820820        }
    821 
     821       
     822        if ( bp_get_activity_object_name() == 'groups' ) {
     823                $group = new BP_Groups_Group( $activities_template->activity->item_id );
     824               
     825                if ( $group->status == 'private' || $group->status == 'hidden' ) {
     826                        if ( !groups_is_user_member( $bp->loggedin_user->id, $group->id ) )
     827                                return false;
     828                }
     829        }
     830               
    822831        if ( 'activity_comment' == bp_get_activity_action_name() )
    823832                return false;
    824833