Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
01/25/2011 08:58:56 PM (14 years ago)
Author:
johnjamesjacoby
Message:

Rename new 'bp-users' component to 'bp-members' for consistency through-out project.
Core, Messages, and Friends Components now use the BP_Component class.
Split Friends and Messages components into smaller files.
Change references to 'profile' to 'xprofile' through-out project for consistency.
Introduce 'bp_actions' and 'bp_screens' standard hooks to replace the usage of 'wp' through-out project.
Move component loader sequence into bp-core-bootstrap.php,
Move old root_component action into 1.3 deprecated file.

File:
1 edited

Legend:

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

    r3884 r3917  
    2121 *  Example:
    2222 *    - http://domain.com/members/andy/profile/edit/group/5/
    23  *    - $bp->current_component: string 'profile'
     23 *    - $bp->current_component: string 'xprofile'
    2424 *    - $bp->current_action: string 'edit'
    2525 *    - $bp->action_variables: array ['group', 5]
     
    280280    global $bp;
    281281
    282     if ( !bp_is_active( 'profile' ) )
     282    if ( !bp_is_active( 'xprofile' ) )
    283283        bp_core_load_template( apply_filters( 'bp_core_template_display_profile', 'members/single/home' ) );
    284284}
Note: See TracChangeset for help on using the changeset viewer.