- Timestamp:
- 08/12/2020 03:03:50 PM (6 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
-
src/wp-includes/class-wp-session-tokens.php (modified) (1 diff)
-
tests/phpunit/tests/user/capabilities.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-session-tokens.php
r47122 r48788 67 67 * @return string A hash of the session token (a verifier). 68 68 */ 69 finalprivate function hash_token( $token ) {69 private function hash_token( $token ) { 70 70 // If ext/hash is not present, use sha1() instead. 71 71 if ( function_exists( 'hash' ) ) { -
trunk/tests/phpunit/tests/user/capabilities.php
r47280 r48788 74 74 } 75 75 76 finalprivate function _getSingleSitePrimitiveCaps() {76 private function _getSingleSitePrimitiveCaps() { 77 77 return array( 78 78 … … 156 156 } 157 157 158 finalprivate function _getMultiSitePrimitiveCaps() {158 private function _getMultiSitePrimitiveCaps() { 159 159 return array( 160 160 … … 239 239 } 240 240 241 finalprivate function _getSingleSiteMetaCaps() {241 private function _getSingleSiteMetaCaps() { 242 242 return array( 243 243 'create_sites' => array(), … … 277 277 } 278 278 279 finalprivate function _getMultiSiteMetaCaps() {279 private function _getMultiSiteMetaCaps() { 280 280 return array( 281 281 'create_sites' => array(),
Note: See TracChangeset
for help on using the changeset viewer.