Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
12/08/2017 12:22:09 AM (7 years ago)
Author:
djpaul
Message:

Retire Legacy Forums.

"Legacy Forums" is what we now call the bundled version of bbPress 1 that has shipped with BuddyPress for over nine years. The Legacy Forums codebase/features are many years stagnant, and it has been almost completely hidden from the UI for the past five years.

Legacy Forums were replaced by bbPress 2, which is its own plugin, and we've been promoting its integration with BuddyPress for a long time. Most significantly, bbPress 1 only runs on WordPress versions older than 4.7, because of a BackPress conflict (which is nested inside bbPress 1) with WordPress 4.7's WP_Taxonomy class.

If your site is still using Legacy Forums, you will need to migrate to bbPress 2 to run BuddyPress 3.0. See https://bpdevel.wordpress.com/2017/12/07/legacy-forums-support-will-be/ for more information.

Fixes #5351
See #7502

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/bp-groups/bp-groups-activity.php

    r11557 r11763  
    5454        array( 'activity', 'group', 'member', 'member_groups' )
    5555    );
    56 
    57     // These actions are for the legacy forums
    58     // Since the bbPress plugin also shares the same 'forums' identifier, we also
    59     // check for the legacy forums loader class to be extra cautious.
    60     if ( bp_is_active( 'forums' ) && class_exists( 'BP_Forums_Component' ) ) {
    61         bp_activity_set_action(
    62             $bp->groups->id,
    63             'new_forum_topic',
    64             __( 'New group forum topic', 'buddypress' ),
    65             false,
    66             __( 'Forum Topics', 'buddypress' ),
    67             array( 'activity', 'group', 'member', 'member_groups' )
    68         );
    69 
    70         bp_activity_set_action(
    71             $bp->groups->id,
    72             'new_forum_post',
    73             __( 'New group forum post',  'buddypress' ),
    74             false,
    75             __( 'Forum Replies', 'buddypress' ),
    76             array( 'activity', 'group', 'member', 'member_groups' )
    77         );
    78     }
    7956
    8057    /**
     
    405382add_action( 'groups_leave_group',          'groups_update_last_activity' );
    406383add_action( 'groups_created_group',        'groups_update_last_activity' );
    407 add_action( 'groups_new_forum_topic',      'groups_update_last_activity' );
    408 add_action( 'groups_new_forum_topic_post', 'groups_update_last_activity' );
    409384
    410385/**
Note: See TracChangeset for help on using the changeset viewer.