From 6d0eaf9674e550788dce7942d87af0e4f0147784 Mon Sep 17 00:00:00 2001 From: Dominik Schilling Date: Tue, 21 Feb 2023 21:04:17 +0000 Subject: [PATCH] Taxonomy: Rename temporary variable in `wp_queue_posts_for_term_meta_lazyload()`. This ensures the `$term_ids` variable only contains term IDs and is not filled with full term objects due to deprecated term caching. Introduced in [55252]. Props skithund, Chouby, joemcgill, flixos90, ocean90. Fixes #57150. Built from https://develop.svn.wordpress.org/trunk@55401 git-svn-id: http://core.svn.wordpress.org/trunk@54934 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/post.php | 4 ++-- wp-includes/version.php | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/wp-includes/post.php b/wp-includes/post.php index 8cc9faf63b..f1ad0bde5f 100644 --- a/wp-includes/post.php +++ b/wp-includes/post.php @@ -7802,9 +7802,9 @@ function wp_queue_posts_for_term_meta_lazyload( $posts ) { $cached_term_ids = wp_cache_get_multiple( $post_ids, "{$taxonomy}_relationships" ); if ( is_array( $cached_term_ids ) ) { $cached_term_ids = array_filter( $cached_term_ids ); - foreach ( $cached_term_ids as $term_ids ) { + foreach ( $cached_term_ids as $_term_ids ) { // Backward compatibility for if a plugin is putting objects into the cache, rather than IDs. - foreach ( $term_ids as $term_id ) { + foreach ( $_term_ids as $term_id ) { if ( is_numeric( $term_id ) ) { $prime_term_ids[] = (int) $term_id; $prime_taxonomy_ids[ $taxonomy ][] = (int) $term_id; diff --git a/wp-includes/version.php b/wp-includes/version.php index a6fb57295d..8480b88283 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.2-beta3-55400'; +$wp_version = '6.2-beta3-55401'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.