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/tests/phpunit/testcases/admin/functions.php

    r11737 r11763  
    8484        $this->assertEquals( bp_core_admin_get_active_components_from_submitted_settings( $submitted2 ), array( 'activity' => 1, 'groups' => 1, 'members' => 1, 'messages' => 1, 'settings' => 1, 'xprofile' => 1 ) );
    8585
    86         // Activating from the Retired screen
    87         $_GET['action'] = 'retired';
    88         buddypress()->active_components = array(
    89             'activity' => 1,
    90             'members' => 1,
    91             'messages' => 1,
    92             'settings' => 1,
    93             'xprofile' => 1,
    94         );
    95 
    96         $submitted3 = array(
    97             'forums' => 1,
    98         );
    99 
    100         $this->assertEquals( bp_core_admin_get_active_components_from_submitted_settings( $submitted3 ), array( 'activity' => 1, 'forums' => 1, 'members' => 1, 'messages' => 1, 'settings' => 1, 'xprofile' => 1 ) );
    101 
    10286        // Deactivating from the Retired screen
    10387        $_GET['action'] = 'retired';
    10488        buddypress()->active_components = array(
    10589            'activity' => 1,
    106             'forums' => 1,
    10790            'members' => 1,
    10891            'messages' => 1,
Note: See TracChangeset for help on using the changeset viewer.