Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
03/29/2020 05:32:05 PM (5 years ago)
Author:
boonebgorges
Message:

Don't delete user data on delete_user hook on Multisite.

The new function bp_remove_user_data_on_delete_user_hook(), which defaults
to false on Multisite and true otherwise, helps BuddyPress to differentiate
between the use of wp_delete_user() to delete a user account from an
installation (typical on non-Multisite) and its use to remove a user from
a site in a Multisite instance.

Props imath.

Fixes #8175.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/bp-blogs/bp-blogs-functions.php

    r12544 r12605  
    14341434}
    14351435add_action( 'wpmu_delete_user',  'bp_blogs_remove_data' );
    1436 add_action( 'delete_user',       'bp_blogs_remove_data' );
    14371436add_action( 'bp_make_spam_user', 'bp_blogs_remove_data' );
     1437
     1438/**
     1439 * Deletes user XProfile data on the 'delete_user' hook.
     1440 *
     1441 * @since 6.0.0
     1442 *
     1443 * @param int $user_id The ID of the deleted user.
     1444 */
     1445function bp_blogs_remove_data_on_delete_user( $user_id ) {
     1446    if ( ! bp_remove_user_data_on_delete_user_hook( 'blogs', $user_id ) ) {
     1447        return;
     1448    }
     1449
     1450    bp_blogs_remove_data( $user_id );
     1451}
     1452add_action( 'delete_user', 'bp_blogs_remove_data_on_delete_user' );
    14381453
    14391454/**
Note: See TracChangeset for help on using the changeset viewer.