Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
12/08/2017 12:22:09 AM (5 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-core/admin/bp-core-admin-settings.php

    r11606 r11763  
    248248}
    249249
    250 /** Forums Section ************************************************************/
    251 
    252 /**
    253  * Forums settings section description for the settings page.
    254  *
    255  * @since 1.6.0
    256  */
    257 function bp_admin_setting_callback_bbpress_section() { }
    258 
    259 /**
    260  * The bb-config.php location field.
    261  *
    262  * @since 1.6.0
    263  *
    264  */
    265 function bp_admin_setting_callback_bbpress_configuration() {
    266 
    267     $config_location = bp_get_option( 'bb-config-location' );
    268     $file_exists     = (bool) ( file_exists( $config_location ) || is_file( $config_location ) ); ?>
    269 
    270     <input name="bb-config-location" type="text" id="bb-config-location" value="<?php bp_form_option( 'bb-config-location', '' ); ?>" class="medium-text" style="width: 300px;" />
    271 
    272     <?php if ( false === $file_exists ) : ?>
    273 
    274         <a class="button" href="<?php bp_admin_url( 'admin.php?page=bb-forums-setup&repair=1' ); ?>"><?php _e( 'Repair', 'buddypress' ) ?></a>
    275         <span class="attention"><?php _e( 'File does not exist', 'buddypress' ); ?></span>
    276 
    277     <?php endif; ?>
    278 
    279     <p class="description"><?php _e( 'Absolute path to your bbPress configuration file.', 'buddypress' ); ?></p>
    280 
    281 <?php
    282 }
    283 
    284250/** Settings Page *************************************************************/
    285251
Note: See TracChangeset for help on using the changeset viewer.