diff --git a/wp-includes/pluggable.php b/wp-includes/pluggable.php index 8081f9e62c..2a93f91325 100644 --- a/wp-includes/pluggable.php +++ b/wp-includes/pluggable.php @@ -2359,7 +2359,7 @@ if ( ! function_exists( 'wp_create_nonce' ) ) : $uid = apply_filters( 'nonce_user_logged_out', $uid, $action ); } - $token = wp_get_session_token( $action ); + $token = wp_get_session_token(); $i = wp_nonce_tick( $action ); return substr( wp_hash( $i . '|' . $action . '|' . $uid . '|' . $token, 'nonce' ), -12, 10 ); diff --git a/wp-includes/version.php b/wp-includes/version.php index e00f371568..e9171915a1 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.3-alpha-55684'; +$wp_version = '6.3-alpha-55685'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.