diff --git a/wp-includes/version.php b/wp-includes/version.php index 618a91244d..7b7581510b 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.3-alpha-45706'; +$wp_version = '5.3-alpha-45707'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema. diff --git a/wp-includes/wp-db.php b/wp-includes/wp-db.php index 4f8223fc4b..98eba1bc29 100644 --- a/wp-includes/wp-db.php +++ b/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 ); }