Changeset 1995
- Timestamp:
- 09/29/2009 07:22:53 PM (15 years ago)
- Location:
- trunk
- Files:
-
- 11 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/bp-activity.php
r1905 r1995 46 46 $wpdb->query( "DROP TABLE IF EXISTS {$wpdb->base_prefix}bp_activity_sitewide" ); 47 47 48 /* Rename the old user activity cached table */48 /* TODO: Rename the old user activity cached table */ 49 49 //$wpdb->query( "RENAME TABLE {$wpdb->base_prefix}bp_activity_user_activity_cached TO {$bp->activity->table_name}" ); 50 50 … … 63 63 /* Register this in the active components array */ 64 64 $bp->active_components[$bp->activity->slug] = $bp->activity->id; 65 66 do_action( 'bp_activity_setup_globals' ); 65 67 } 66 68 add_action( 'plugins_loaded', 'bp_activity_setup_globals', 5 ); -
trunk/bp-blogs.php
r1979 r1995 120 120 /* Register this in the active components array */ 121 121 $bp->active_components[$bp->blogs->slug] = $bp->blogs->id; 122 123 do_action( 'bp_blogs_setup_globals' ); 122 124 } 123 125 add_action( 'plugins_loaded', 'bp_blogs_setup_globals', 5 ); -
trunk/bp-core.php
r1982 r1995 166 166 if ( !$bp->current_component ) 167 167 $bp->current_component = $bp->default_component; 168 169 do_action( 'bp_core_setup_globals' ); 168 170 } 169 171 add_action( 'plugins_loaded', 'bp_core_setup_globals', 5 ); -
trunk/bp-forums.php
r1960 r1995 26 26 /* Register this in the active components array */ 27 27 $bp->active_components[$bp->forums->slug] = $bp->forums->id; 28 29 do_action( 'bp_forums_setup' ); 28 30 } 29 31 add_action( 'plugins_loaded', 'bp_forums_setup', 5 ); -
trunk/bp-friends.php
r1905 r1995 49 49 /* Register this in the active components array */ 50 50 $bp->active_components[$bp->friends->slug] = $bp->friends->id; 51 52 do_action( 'friends_setup_globals' ); 51 53 } 52 54 add_action( 'plugins_loaded', 'friends_setup_globals', 5 ); -
trunk/bp-groups.php
r1982 r1995 148 148 149 149 $bp->groups->valid_status = apply_filters( 'groups_valid_status', array( 'public', 'private', 'hidden' ) ); 150 151 do_action( 'groups_setup_globals' ); 150 152 } 151 153 add_action( 'plugins_loaded', 'groups_setup_globals', 5 ); -
trunk/bp-messages.php
r1957 r1995 88 88 /* Register this in the active components array */ 89 89 $bp->active_components[$bp->messages->slug] = $bp->messages->id; 90 91 do_action( 'messages_setup_globals' ); 90 92 } 91 93 add_action( 'plugins_loaded', 'messages_setup_globals', 5 ); -
trunk/bp-status.php
r1986 r1995 15 15 /* Register this in the active components array */ 16 16 $bp->active_components[$bp->status->slug] = $bp->status->id; 17 18 do_action( 'bp_status_setup_globals' ); 17 19 } 18 20 add_action( 'plugins_loaded', 'bp_status_setup_globals', 5 ); -
trunk/bp-themes/bp-sn-parent/userbar.php
r1993 r1995 13 13 14 14 <ul id="bp-nav"> 15 <?php bp_get_ nav() ?>15 <?php bp_get_loggedin_user_nav() ?> 16 16 </ul> 17 17 -
trunk/bp-wire.php
r1913 r1995 27 27 /* Register this in the active components array */ 28 28 $bp->active_components[$bp->wire->slug] = $bp->wire->id; 29 30 do_action( 'bp_wire_setup_globals' ); 29 31 } 30 32 add_action( 'plugins_loaded', 'bp_wire_setup_globals', 5 ); -
trunk/bp-xprofile.php
r1977 r1995 151 151 if ( function_exists( 'bp_wire_install' ) ) 152 152 $bp->profile->table_name_wire = $wpdb->base_prefix . 'bp_xprofile_wire'; 153 154 do_action( 'xprofile_setup_globals' ); 153 155 } 154 156 add_action( 'plugins_loaded', 'xprofile_setup_globals', 5 );
Note: See TracChangeset
for help on using the changeset viewer.