Changeset 1717
- Timestamp:
- 08/27/2009 08:40:07 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/bp-core.php
r1715 r1717 14 14 /* Define on which blog ID BuddyPress should run */ 15 15 if ( !defined( 'BP_ROOT_BLOG' ) ) 16 define( 'BP_ROOT_BLOG', 2);16 define( 'BP_ROOT_BLOG', 1 ); 17 17 18 18 /* Define the user and usermeta table names, useful if you are using custom or shared tables */ … … 120 120 121 121 /* The default component to use if none are set and someone visits: http://domain.com/members/andy */ 122 $bp->default_component = 'profile'; 123 122 if ( defined( 'BP_XPROFILE_SLUG' ) ) 123 $bp->default_component = BP_XPROFILE_SLUG; 124 else 125 $bp->default_component = 'profile'; 126 124 127 /* Sets up the array container for the component navigation rendered by bp_get_nav() */ 125 128 $bp->bp_nav = array();
Note: See TracChangeset
for help on using the changeset viewer.