Skip to:
Content

BuddyPress.org

Ticket #3069: 3069.patch

File 3069.patch, 1.3 KB (added by johnpbloch, 15 years ago)
  • bp-activity/bp-activity-actions.php

     
    247247function bp_activity_action_friends_feed() {
    248248        global $bp, $wp_query;
    249249
    250         if ( ( $bp->activity->slug != bp_current_component() ) || !bp_is_user() || !bp_is_current_action( $bp->friends->slug ) || !isset( $bp->action_variables[0] ) || $bp->action_variables[0] != 'feed' )
     250        if ( ( $bp->activity->slug != bp_current_component() ) || !bp_is_user() || ( bp_is_active( 'friends' ) && !bp_is_current_action( $bp->friends->slug ) ) || !isset( $bp->action_variables[0] ) || $bp->action_variables[0] != 'feed' )
    251251                return false;
    252252
    253253        $wp_query->is_404 = false;
     
    261261function bp_activity_action_my_groups_feed() {
    262262        global $bp, $wp_query;
    263263
    264         if ( ( $bp->activity->slug != bp_current_component() ) || !bp_is_user() || !bp_is_current_action( $bp->groups->slug ) || !isset( $bp->action_variables[0] ) || $bp->action_variables[0] != 'feed' )
     264        if ( ( $bp->activity->slug != bp_current_component() ) || !bp_is_user() || ( bp_is_active( 'groups' ) && !bp_is_current_action( $bp->groups->slug ) ) || !isset( $bp->action_variables[0] ) || $bp->action_variables[0] != 'feed' )
    265265                return false;
    266266
    267267        $wp_query->is_404 = false;