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.

git-svn-id: https://develop.svn.wordpress.org/trunk@56166 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Sergey Biryukov 2023-07-08 10:46:20 +00:00
parent a357b7adc8
commit e91908aeb6

View File

@ -598,7 +598,7 @@ class WP_Tax_Query {
return;
}
if ( $query['field'] == $resulting_field ) {
if ( $query['field'] === $resulting_field ) {
return;
}