Changeset 1238 for trunk/bp-core.php
- Timestamp:
- 03/19/2009 01:35:32 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/bp-core.php
r1236 r1238 1341 1341 1342 1342 function bp_core_print_generation_time() { 1343 global $wpdb; 1343 1344 ?> 1344 1345 <!-- Generated in <?php timer_stop(1); ?> seconds. --> … … 1360 1361 /* Remove usermeta */ 1361 1362 delete_usermeta( $user_id, 'last_activity' ); 1363 wp_cache_flush(); 1362 1364 } 1363 1365 add_action( 'wpmu_delete_user', 'bp_core_remove_data', 1 ); 1364 1366 add_action( 'delete_user', 'bp_core_remove_data', 1 ); 1367 1368 function bp_core_clear_user_object_cache( $user_id ) { 1369 wp_cache_delete( 'bp_user_' . $user_id, 'bp' ); 1370 wp_cache_delete( 'online_users' ); 1371 wp_cache_delete( 'newest_users' ); 1372 } 1373 1374 // List actions to clear object caches on 1375 add_action( 'bp_core_delete_avatar', 'bp_core_clear_user_object_cache' ); 1376 add_action( 'bp_core_avatar_save', 'bp_core_clear_user_object_cache' ); 1365 1377 1366 1378 // List actions to clear super cached pages on, if super cache is installed
Note: See TracChangeset
for help on using the changeset viewer.