From 3cd78aef84da77fa32e35c370c6ce4636e9dd646 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Sat, 8 Jul 2023 10:48:24 +0000 Subject: [PATCH] Coding Standards: Use strict comparison in `wp-includes/class-wp-tax-query.php`. Follow-up to [16413], [16849]. Props aristath, poena, afercia, SergeyBiryukov. See #57839. Built from https://develop.svn.wordpress.org/trunk@56166 git-svn-id: http://core.svn.wordpress.org/trunk@55678 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/class-wp-tax-query.php | 2 +- wp-includes/version.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-includes/class-wp-tax-query.php b/wp-includes/class-wp-tax-query.php index b41f1b238e..38841c42b0 100644 --- a/wp-includes/class-wp-tax-query.php +++ b/wp-includes/class-wp-tax-query.php @@ -598,7 +598,7 @@ class WP_Tax_Query { return; } - if ( $query['field'] == $resulting_field ) { + if ( $query['field'] === $resulting_field ) { return; } diff --git a/wp-includes/version.php b/wp-includes/version.php index 27bccd97bc..16e4446ba7 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.3-beta3-56165'; +$wp_version = '6.3-beta3-56166'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.