diff --git a/wp-includes/class-wp-user-query.php b/wp-includes/class-wp-user-query.php index 23f108dbd3..084655932a 100644 --- a/wp-includes/class-wp-user-query.php +++ b/wp-includes/class-wp-user-query.php @@ -601,9 +601,10 @@ class WP_User_Query { * by reference. If WP_User_Query does not perform a database query, it will not * have enough information to generate these values itself. * - * @since 5.0.3 + * @since 5.1.0 * - * @param array|null $results Return an array of user data to short-circuit WP's user query or null to allow WP to run its normal queries. + * @param array|null $results Return an array of user data to short-circuit WP's user query + * or null to allow WP to run its normal queries. * @param WP_User_Query $this The WP_User_Query instance (passed by reference). */ $this->results = apply_filters_ref_array( 'users_pre_query', array( null, &$this ) ); @@ -622,7 +623,7 @@ class WP_User_Query { * Filters SELECT FOUND_ROWS() query for the current WP_User_Query instance. * * @since 3.2.0 - * @since 5.0.3 Added the `$this` parameter. + * @since 5.1.0 Added the `$this` parameter. * * @global wpdb $wpdb WordPress database abstraction object. * diff --git a/wp-includes/version.php b/wp-includes/version.php index eb36da7795..44062b7565 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.1-alpha-44408'; +$wp_version = '5.1-alpha-44410'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.