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.

Location:
trunk/bp-members
Files:
1 copied
1 moved

Legend:

Unmodified
Added
Removed
  • trunk/bp-members/bp-members-template.php

    r3916 r3917  
    409409        global $members_template;
    410410
    411         if ( !bp_is_active( 'profile' ) )
     411        if ( !bp_is_active( 'xprofile' ) )
    412412            return false;
    413413
     
    927927 * @since 1.3
    928928 */
    929 function bp_users_activity_feed() {
     929function bp_members_activity_feed() {
    930930    if ( !bp_is_active( 'activity' ) || !bp_is_user() )
    931931        return; ?>
     
    935935<?php
    936936}
    937 add_action( 'bp_head', 'bp_users_activity_feed' );
     937add_action( 'bp_head', 'bp_members_activity_feed' );
    938938
    939939?>
Note: See TracChangeset for help on using the changeset viewer.