diff --git a/wp-includes/user.php b/wp-includes/user.php index 5f061e0868..7e83c57494 100644 --- a/wp-includes/user.php +++ b/wp-includes/user.php @@ -1897,8 +1897,13 @@ function wp_get_user_contact_methods( $user = null ) { /** * The old private function for setting up user contact methods. * + * Use wp_get_user_contact_methods() instead. + * * @since 2.9.0 * @access private + * + * @param WP_User $user Optional. WP_User object. Default null. + * @return array Array of contact methods and their labels. */ function _wp_get_user_contactmethods( $user = null ) { return wp_get_user_contact_methods( $user ); diff --git a/wp-includes/version.php b/wp-includes/version.php index f28e329007..1df6f4cbdb 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.5-alpha-35985'; +$wp_version = '4.5-alpha-35986'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.