Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
10/25/2013 12:51:11 PM (11 years ago)
Author:
boonebgorges
Message:

Activate the Settings component as a default on new installations

The Settings component provides valuable access to such important utilities as
the password reset page and the notification settings page, which are required
on the overwhelming majority of installations. Activating it by default on
new installations will reduce new user confusion and support requests.

Fixes #5141

Props r-a-y

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/bp-core/bp-core-update.php

    r7457 r7480  
    187187    $raw_db_version = (int) bp_get_db_version_raw();
    188188
    189     $default_components = apply_filters( 'bp_new_install_default_components', array( 'activity' => 1, 'members' => 1, 'xprofile' => 1, ) );
     189    $default_components = apply_filters( 'bp_new_install_default_components', array(
     190        'activity' => 1,
     191        'members'  => 1,
     192        'settings' => 1,
     193        'xprofile' => 1,
     194    ) );
     195
    190196    require_once( BP_PLUGIN_DIR . '/bp-core/admin/bp-core-schema.php' );
    191197
Note: See TracChangeset for help on using the changeset viewer.