Changeset 2656 for trunk/bp-xprofile.php
- Timestamp:
- 02/10/2010 09:13:14 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/bp-xprofile.php
r2645 r2656 125 125 do_action( 'xprofile_setup_globals' ); 126 126 } 127 add_action( ' plugins_loaded', 'xprofile_setup_globals', 5);127 add_action( 'bp_setup_globals', 'xprofile_setup_globals' ); 128 128 add_action( 'admin_menu', 'xprofile_setup_globals', 2 ); 129 129 … … 195 195 do_action( 'xprofile_setup_nav' ); 196 196 } 197 add_action( ' plugins_loaded', 'xprofile_setup_nav' );197 add_action( 'bp_setup_nav', 'xprofile_setup_nav' ); 198 198 add_action( 'admin_menu', 'xprofile_setup_nav' ); 199 199 … … 465 465 do_action( 'xprofile_register_activity_actions' ); 466 466 } 467 add_action( ' plugins_loaded', 'xprofile_register_activity_actions' );467 add_action( 'bp_register_activity_actions', 'xprofile_register_activity_actions' ); 468 468 469 469 /** … … 952 952 add_action( 'delete_user', 'xprofile_remove_data', 1 ); 953 953 954 955 /******************************************************************************** 956 * Caching 957 * 958 * Caching functions handle the clearing of cached objects and pages on specific 959 * actions throughout BuddyPress. 960 */ 961 954 962 function xprofile_clear_profile_groups_object_cache( $group_obj ) { 955 963 wp_cache_delete( 'xprofile_groups', 'bp' );
Note: See TracChangeset
for help on using the changeset viewer.