From 9070bb3acef75779e75d0fe5f59bf4bafab36359 Mon Sep 17 00:00:00 2001 From: John Blackbourn Date: Sat, 27 Aug 2016 16:54:31 +0000 Subject: [PATCH] Users: Correct the documentation for the `wp_dropdown_users_args` filter description and its parameters. See #37770 Built from https://develop.svn.wordpress.org/trunk@38406 git-svn-id: http://core.svn.wordpress.org/trunk@38347 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/user.php | 6 +++--- wp-includes/version.php | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/wp-includes/user.php b/wp-includes/user.php index 840a26ba6f..f372810913 100644 --- a/wp-includes/user.php +++ b/wp-includes/user.php @@ -1042,12 +1042,12 @@ function wp_dropdown_users( $args = '' ) { $option_none_value = $r['option_none_value']; /** - * Filters the query arguments for the user drop-down. + * Filters the query arguments for the list of users in the dropdown. * * @since 4.4.0 * - * @param array $query_args The query arguments for wp_dropdown_users(). - * @param array $r The default arguments for wp_dropdown_users(). + * @param array $query_args The query arguments for get_users(). + * @param array $r The arguments passed to wp_dropdown_users() combined with the defaults. */ $query_args = apply_filters( 'wp_dropdown_users_args', $query_args, $r ); diff --git a/wp-includes/version.php b/wp-includes/version.php index 5a59b34de9..1f24a61921 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.7-alpha-38405'; +$wp_version = '4.7-alpha-38406'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.