mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2025-10-16 12:05:38 +00:00
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:
parent
a357b7adc8
commit
e91908aeb6
@ -598,7 +598,7 @@ class WP_Tax_Query {
|
||||
return;
|
||||
}
|
||||
|
||||
if ( $query['field'] == $resulting_field ) {
|
||||
if ( $query['field'] === $resulting_field ) {
|
||||
return;
|
||||
}
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user