Skip to:
Content

BuddyPress.org

Changeset 3232 for trunk/bp-loader.php


Ignore:
Timestamp:
09/06/2010 04:24:57 PM (14 years ago)
Author:
apeatling
Message:

Merging 1.2 branch with trunk

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/bp-loader.php

    r2925 r3232  
    77Version: 1.3-bleeding
    88Author URI: http://buddypress.org/developers/
    9 Network: true
    109*/
    1110
     
    6261        include( BP_PLUGIN_DIR . '/bp-xprofile.php' );
    6362
    64     /* Allow dependent plugins to hook into BuddyPress in a safe way */
     63    /**
     64    * bp_loaded()
     65    *
     66    * Allow dependent plugins and core actions to attach themselves in a safe way.
     67    *
     68    * See bp-core.php for the following core actions:
     69    *      - bp_init|bp_setup_globals|bp_setup_root_components|bp_setup_nav|bp_register_widgets
     70    */
    6571    function bp_loaded() {
    66         do_action( 'bp_init' );
     72        do_action( 'bp_loaded' );
    6773    }
    68     add_action( 'plugins_loaded', 'bp_loaded' );
     74    add_action( 'plugins_loaded', 'bp_loaded', 20 );
    6975}
    7076
Note: See TracChangeset for help on using the changeset viewer.