Ticket #2293: no_nonmember_comments_on_nonpublic_activity.patch
File no_nonmember_comments_on_nonpublic_activity.patch, 893 bytes (added by , 14 years ago) |
---|
-
bp-activity/bp-activity-templatetags.php
818 818 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() ) 819 819 return false; 820 820 } 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 822 831 if ( 'activity_comment' == bp_get_activity_action_name() ) 823 832 return false; 824 833