Make WordPress Core

Changeset 40596


Ignore:
Timestamp:
05/09/2017 05:14:08 PM (7 years ago)
Author:
flixos90
Message:

Multisite: Fix filter hooks for the updating network count functions.

[40591] and [40593] introduced a $network_id parameter for wp_maybe_update_network_site_counts() and wp_maybe_update_network_user_counts(), as well as [40486] previously added it to wp_update_network_counts(). This changeset ensures the filter hooks in ms-default-filters.php do not pass any parameter to them that might conflict with their actual $network_id parameter, which caused unit test failures before.

Fixes #40703.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/ms-default-filters.php

    r40333 r40596  
    5656// Counts
    5757add_action( 'admin_init', 'wp_schedule_update_network_counts');
    58 add_action( 'update_network_counts', 'wp_update_network_counts');
     58add_action( 'update_network_counts', 'wp_update_network_counts', 10, 0 );
    5959foreach ( array( 'user_register', 'deleted_user', 'wpmu_new_user', 'make_spam_user', 'make_ham_user' ) as $action )
    60     add_action( $action, 'wp_maybe_update_network_user_counts' );
     60    add_action( $action, 'wp_maybe_update_network_user_counts', 10, 0 );
    6161foreach ( array( 'make_spam_blog', 'make_ham_blog', 'archive_blog', 'unarchive_blog', 'make_delete_blog', 'make_undelete_blog' ) as $action )
    62     add_action( $action, 'wp_maybe_update_network_site_counts' );
     62    add_action( $action, 'wp_maybe_update_network_site_counts', 10, 0 );
    6363unset( $action );
    6464
Note: See TracChangeset for help on using the changeset viewer.