diff --git a/wp-includes/version.php b/wp-includes/version.php index ec1e0d7f6f..c4f42267ca 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.2-alpha-45034'; +$wp_version = '5.2-alpha-45035'; /** * 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 b1c6ddf52b..1bd8aa2611 100644 --- a/wp-includes/wp-db.php +++ b/wp-includes/wp-db.php @@ -2041,7 +2041,7 @@ class wpdb { /* * Add the filter to remove the placeholder escaper. Uses priority 0, so that anything - * else attached to this filter will recieve the query with the placeholder string removed. + * else attached to this filter will receive the query with the placeholder string removed. */ if ( ! has_filter( 'query', array( $this, 'remove_placeholder_escape' ) ) ) { add_filter( 'query', array( $this, 'remove_placeholder_escape' ), 0 );