changeset 18 | be944660c56a |
parent 16 | a86126ab1dd4 |
child 21 | 48c4eec2b7e6 |
--- a/wp/wp-includes/class-wp-session-tokens.php Tue Dec 15 15:52:01 2020 +0100 +++ b/wp/wp-includes/class-wp-session-tokens.php Wed Sep 21 18:19:35 2022 +0200 @@ -66,7 +66,7 @@ * @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 );