Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
06/07/2013 02:08:32 AM (11 years ago)
Author:
boonebgorges
Message:

Better cache busting of user group counts.

See #5018

Props r-a-y

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/bp-groups/bp-groups-cache.php

    r6896 r7183  
    9595    wp_cache_delete( 'bp_total_groups_for_user_' . $user_id, 'bp' );
    9696}
    97 add_action( 'groups_join_group',   'groups_clear_group_user_object_cache', 10, 2 );
    98 add_action( 'groups_leave_group',  'groups_clear_group_user_object_cache', 10, 2 );
    99 add_action( 'groups_ban_member',   'groups_clear_group_user_object_cache', 10, 2 );
    100 add_action( 'groups_unban_member', 'groups_clear_group_user_object_cache', 10, 2 );
     97add_action( 'groups_join_group',    'groups_clear_group_user_object_cache', 10, 2 );
     98add_action( 'groups_leave_group',   'groups_clear_group_user_object_cache', 10, 2 );
     99add_action( 'groups_ban_member',    'groups_clear_group_user_object_cache', 10, 2 );
     100add_action( 'groups_unban_member',  'groups_clear_group_user_object_cache', 10, 2 );
     101add_action( 'groups_uninvite_user', 'groups_clear_group_user_object_cache', 10, 2 );
     102add_action( 'groups_remove_member', 'groups_clear_group_user_object_cache', 10, 2 );
    101103
    102104/* List actions to clear super cached pages on, if super cache is installed */
Note: See TracChangeset for help on using the changeset viewer.