diff --git a/wp-includes/class-wp-session-tokens.php b/wp-includes/class-wp-session-tokens.php index 033add33c4..a1a779b236 100644 --- a/wp-includes/class-wp-session-tokens.php +++ b/wp-includes/class-wp-session-tokens.php @@ -66,7 +66,7 @@ abstract class WP_Session_Tokens { * @param string $token Session token to hash. * @return string A hash of the session token (a verifier). */ - final private function hash_token( $token ) { + private function hash_token( $token ) { // If ext/hash is not present, use sha1() instead. if ( function_exists( 'hash' ) ) { return hash( 'sha256', $token ); diff --git a/wp-includes/version.php b/wp-includes/version.php index 60d476c15f..83b6f66802 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.6-alpha-48783'; +$wp_version = '5.6-alpha-48788'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.