bp_core_process_spammer_status, $user_id, $is_spam

bp_core_process_spammer_status, $user_id, $is_spam

Appears in:
Hook Type: action

See hook in core

Displaying hooks found in version: buddypress.14.5.2

do_action('bp_core_process_spammer_status, $user_id, $is_spam') is found 1 times:

  • /bp-members/bp-members-functions.php line 851
    	 *
    	 * @param int  $user_id ID of the processed user.
    	 * @param bool $is_spam The determined spam status of processed user.
    	 */
    	do_action( 'bp_core_process_spammer_status', $user_id, $is_spam );
    
    	// Put things back how we found them.
    	add_action( 'make_spam_user', 'bp_core_mark_user_spam_admin' );
    	add_action( 'make_ham_user', 'bp_core_mark_user_ham_admin' );
    
    	return true;