Skip to:
Content

BuddyPress.org

Changeset 3789 for trunk/bp-loader.php


Ignore:
Timestamp:
01/21/2011 10:34:00 AM (14 years ago)
Author:
johnjamesjacoby
Message:

Load users and settings after other core components.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/bp-loader.php

    r3757 r3789  
    7575    do_action( 'bp_core_loaded' );
    7676
    77     // Users
    78     include( BP_PLUGIN_DIR . '/bp-users/bp-users-loader.php'       );
    79     include( BP_PLUGIN_DIR . '/bp-settings/bp-settings-loader.php' );
    80 
    8177    // Activity Streams
    8278    if ( !isset( $bp_deactivated['bp-activity/bp-activity-loader.php'] ) && file_exists( BP_PLUGIN_DIR . '/bp-activity/bp-activity-loader.php') )
     
    107103        include( BP_PLUGIN_DIR . '/bp-xprofile/bp-xprofile-loader.php' );
    108104       
     105    // Users
     106    include( BP_PLUGIN_DIR . '/bp-users/bp-users-loader.php'       );
     107
     108    // Settings
     109    include( BP_PLUGIN_DIR . '/bp-settings/bp-settings-loader.php' );
     110
    109111    // If this is an upgrade, load the upgrade file
    110112    if ( $bp_db_version < constant( 'BP_DB_VERSION' ) ) {
Note: See TracChangeset for help on using the changeset viewer.