Taxonomy: Fix values passed to actions in `wp_modify_term_count_by_now()`.

Replace the `WP_Taxonomy` object with the taxonomy slug in the values passed to the actions `edit_term_taxonomy` and `edited_term_taxonomy` within `wp_modify_term_count_by_now()`.

Follow up to [49141], [49171].
Props Chouby, lcyh78.
Fixes #40351.


Built from https://develop.svn.wordpress.org/trunk@49316


git-svn-id: http://core.svn.wordpress.org/trunk@49078 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Peter Wilson 2020-10-26 23:07:06 +00:00
parent 1ce2f12eaf
commit 6c92704e10
2 changed files with 3 additions and 3 deletions

View File

@ -3444,7 +3444,7 @@ function wp_modify_term_count_by_now( $tt_ids, $taxonomy, $modify_by ) {
foreach ( $tt_ids as $tt_id ) { foreach ( $tt_ids as $tt_id ) {
/** This action is documented in wp-includes/taxonomy.php */ /** This action is documented in wp-includes/taxonomy.php */
do_action( 'edit_term_taxonomy', $tt_id, $taxonomy ); do_action( 'edit_term_taxonomy', $tt_id, $taxonomy->name );
} }
$result = $wpdb->query( $result = $wpdb->query(
@ -3461,7 +3461,7 @@ function wp_modify_term_count_by_now( $tt_ids, $taxonomy, $modify_by ) {
foreach ( $tt_ids as $tt_id ) { foreach ( $tt_ids as $tt_id ) {
/** This action is documented in wp-includes/taxonomy.php */ /** This action is documented in wp-includes/taxonomy.php */
do_action( 'edited_term_taxonomy', $tt_id, $taxonomy ); do_action( 'edited_term_taxonomy', $tt_id, $taxonomy->name );
} }
clean_term_cache( $tt_ids, '', false ); clean_term_cache( $tt_ids, '', false );

View File

@ -13,7 +13,7 @@
* *
* @global string $wp_version * @global string $wp_version
*/ */
$wp_version = '5.6-beta1-49314'; $wp_version = '5.6-beta1-49316';
/** /**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema. * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.