diff --git a/wp-admin/user-edit.php b/wp-admin/user-edit.php index aa6ed7f5eb..bb3c62ec97 100644 --- a/wp-admin/user-edit.php +++ b/wp-admin/user-edit.php @@ -473,10 +473,12 @@ if ( is_multisite() && is_network_admin() && ! IS_PROFILE_PAGE && current_user_c * Filters the user profile picture description displayed under the Gravatar. * * @since 4.4.0 + * @since 4.7.0 Added the `$profileuser` parameter. * - * @param string $description The description that will be printed. + * @param string $description The description that will be printed. + * @param WP_User $profileuser The current WP_User object. */ - echo apply_filters( 'user_profile_picture_description', $description ); + echo apply_filters( 'user_profile_picture_description', $description, $profileuser ); ?>

diff --git a/wp-includes/version.php b/wp-includes/version.php index 3bb5fdd9be..8bf5f146a0 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.7-alpha-38480'; +$wp_version = '4.7-alpha-38481'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.