diff --git a/src/wp-includes/wp-db.php b/src/wp-includes/wp-db.php index 4f8223fc4b..98eba1bc29 100644 --- a/src/wp-includes/wp-db.php +++ b/src/wp-includes/wp-db.php @@ -2092,7 +2092,7 @@ class wpdb { * Add the filter to remove the placeholder escaper. Uses priority 0, so that anything * else attached to this filter will receive the query with the placeholder string removed. */ - if ( ! has_filter( 'query', array( $this, 'remove_placeholder_escape' ) ) ) { + if ( false === has_filter( 'query', array( $this, 'remove_placeholder_escape' ) ) ) { add_filter( 'query', array( $this, 'remove_placeholder_escape' ), 0 ); }