diff --git a/wp-includes/class-wp-recovery-mode-key-service.php b/wp-includes/class-wp-recovery-mode-key-service.php index 73713caeb9..c9a6a24368 100644 --- a/wp-includes/class-wp-recovery-mode-key-service.php +++ b/wp-includes/class-wp-recovery-mode-key-service.php @@ -38,7 +38,7 @@ final class WP_Recovery_Mode_Key_Service { * * @since 5.2.0 * - * @global PasswordHash $wp_hasher + * @global PasswordHash $wp_hasher Portable PHP password hashing framework instance. * * @param string $token A token generated by {@see generate_recovery_mode_token()}. * @return string Recovery mode key. @@ -85,7 +85,7 @@ final class WP_Recovery_Mode_Key_Service { * * @since 5.2.0 * - * @global PasswordHash $wp_hasher + * @global PasswordHash $wp_hasher Portable PHP password hashing framework instance. * * @param string $token The token used when generating the given key. * @param string $key The unhashed key. diff --git a/wp-includes/pluggable.php b/wp-includes/pluggable.php index 7cff57749c..c0bbcfe02e 100644 --- a/wp-includes/pluggable.php +++ b/wp-includes/pluggable.php @@ -2528,7 +2528,7 @@ if ( ! function_exists( 'wp_hash_password' ) ) : * * @since 2.5.0 * - * @global PasswordHash $wp_hasher PHPass object + * @global PasswordHash $wp_hasher PHPass object. * * @param string $password Plain text user password to hash. * @return string The hash string of the password. diff --git a/wp-includes/user.php b/wp-includes/user.php index 5b9dacc20f..5dbff2b929 100644 --- a/wp-includes/user.php +++ b/wp-includes/user.php @@ -2875,7 +2875,7 @@ function wp_get_password_hint() { * * @since 4.4.0 * - * @global PasswordHash $wp_hasher Portable PHP password hashing framework. + * @global PasswordHash $wp_hasher Portable PHP password hashing framework instance. * * @param WP_User $user User to retrieve password reset key for. * @return string|WP_Error Password reset key on success. WP_Error on error. @@ -3047,8 +3047,8 @@ function check_password_reset_key( $key, $login ) { * @since 2.5.0 * @since 5.7.0 Added `$user_login` parameter. * - * @global wpdb $wpdb WordPress database abstraction object. - * @global PasswordHash $wp_hasher Portable PHP password hashing framework. + * @global wpdb $wpdb WordPress database abstraction object. + * @global PasswordHash $wp_hasher Portable PHP password hashing framework instance. * * @param string $user_login Optional. Username to send a password retrieval email for. * Defaults to `$_POST['user_login']` if not set. @@ -4817,6 +4817,8 @@ All at ###SITENAME### * * @since 4.9.6 * + * @global PasswordHash $wp_hasher Portable PHP password hashing framework instance. + * * @param int $request_id Request ID. * @return string Confirmation key. */ @@ -4848,6 +4850,8 @@ function wp_generate_user_request_key( $request_id ) { * * @since 4.9.6 * + * @global PasswordHash $wp_hasher Portable PHP password hashing framework instance. + * * @param string $request_id ID of the request being confirmed. * @param string $key Provided key to validate. * @return true|WP_Error True on success, WP_Error on failure. diff --git a/wp-includes/version.php b/wp-includes/version.php index 2905c61e3f..a96d03bf64 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.5-alpha-57225'; +$wp_version = '6.5-alpha-57226'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.