Changeset 5699 for trunk/bp-xprofile/bp-xprofile-cache.php
- Timestamp:
- 02/11/2012 02:14:07 AM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/bp-xprofile/bp-xprofile-cache.php
r5302 r5699 1 1 <?php 2 /******************************************************************************** 3 * Caching 2 3 /** 4 * BuddyPress XProfile Template Tags 4 5 * 5 6 * Caching functions handle the clearing of cached objects and pages on specific 6 7 * actions throughout BuddyPress. 8 * 9 * @package BuddyPress 10 * @subpackage XProfileTemplate 7 11 */ 8 12 … … 11 15 12 16 function xprofile_clear_profile_groups_object_cache( $group_obj ) { 13 wp_cache_delete( 'xprofile_groups_inc_empty', 'bp' );14 wp_cache_delete( 'xprofile_group_' . $group_obj->id );17 wp_cache_delete( 'xprofile_groups_inc_empty', 'bp' ); 18 wp_cache_delete( 'xprofile_group_' . $group_obj->id, 'bp' ); 15 19 } 16 20 17 21 function xprofile_clear_profile_data_object_cache( $group_id ) { 18 global $bp;19 22 wp_cache_delete( 'bp_user_fullname_' . bp_loggedin_user_id(), 'bp' ); 20 23 }
Note: See TracChangeset
for help on using the changeset viewer.