#143 closed defect (bug) (fixed)
Caching of Users/Wire Posts etc...
Reported by: | whyisjake | Owned by: | andypeatling |
---|---|---|---|
Milestone: | Priority: | major | |
Severity: | Version: | ||
Component: | Keywords: | caching | |
Cc: |
Description
After manually deleting a user, Site Admin -> Users -> Delete they remain on some of the profiles.
Change History (2)
#2
@
16 years ago
I don't know if this is possibly related to the abovementioned caching, but I noticed in
bp-friends.php:551-552
bp-groups.php:1713-1714
add_action( 'wpmu_delete_user', 'bp_core_remove_data', 1 );
add_action( 'delete_user', 'bp_core_remove_data', 1 );
Shouldn't the hooked functions be the respectve
friends_remove_data and
groups_remove_data
instead of bp_core? Or is this a temporary thing until everything's been settled?
Note: See
TracTickets for help on using
tickets.
There was a missing "wpmu_delete_user" action call. This has been added and should fix this problem.