Changeset 40387 for trunk/src/wp-includes/pluggable.php
- Timestamp:
- 04/06/2017 06:00:16 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/pluggable.php
r40363 r40387 1806 1806 // Now insert the key, hashed, into the DB. 1807 1807 if ( empty( $wp_hasher ) ) { 1808 require_once ABSPATH . WPINC . '/class-phpass.php'; 1808 1809 $wp_hasher = new PasswordHash( 8, true ); 1809 1810 } … … 2086 2087 2087 2088 if ( empty($wp_hasher) ) { 2089 require_once( ABSPATH . WPINC . '/class-phpass.php'); 2088 2090 // By default, use the portable hash from phpass 2089 2091 $wp_hasher = new PasswordHash(8, true); … … 2145 2147 // new style phpass portable hash. 2146 2148 if ( empty($wp_hasher) ) { 2149 require_once( ABSPATH . WPINC . '/class-phpass.php'); 2147 2150 // By default, use the portable hash from phpass 2148 2151 $wp_hasher = new PasswordHash(8, true);
Note: See TracChangeset
for help on using the changeset viewer.