Changeset 47198 for trunk/src/wp-includes/pluggable.php
- Timestamp:
- 02/06/2020 06:31:22 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/pluggable.php
r47156 r47198 2338 2338 2339 2339 if ( empty( $wp_hasher ) ) { 2340 require_once ( ABSPATH . WPINC . '/class-phpass.php' );2340 require_once ABSPATH . WPINC . '/class-phpass.php'; 2341 2341 // By default, use the portable hash from phpass. 2342 2342 $wp_hasher = new PasswordHash( 8, true ); … … 2398 2398 // presume the new style phpass portable hash. 2399 2399 if ( empty( $wp_hasher ) ) { 2400 require_once ( ABSPATH . WPINC . '/class-phpass.php' );2400 require_once ABSPATH . WPINC . '/class-phpass.php'; 2401 2401 // By default, use the portable hash from phpass. 2402 2402 $wp_hasher = new PasswordHash( 8, true ); … … 2762 2762 2763 2763 if ( ! class_exists( 'WP_Text_Diff_Renderer_Table', false ) ) { 2764 require ( ABSPATH . WPINC . '/wp-diff.php' );2764 require ABSPATH . WPINC . '/wp-diff.php'; 2765 2765 } 2766 2766
Note: See TracChangeset
for help on using the changeset viewer.