Changeset 38371 for trunk/src/wp-includes/pluggable.php
- Timestamp:
- 08/26/2016 05:39:37 PM (9 years ago)
- File:
-
- 1 edited
-
trunk/src/wp-includes/pluggable.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/pluggable.php
r38350 r38371 1740 1740 // Now insert the key, hashed, into the DB. 1741 1741 if ( empty( $wp_hasher ) ) { 1742 require_once ABSPATH . WPINC . '/class-phpass.php';1743 1742 $wp_hasher = new PasswordHash( 8, true ); 1744 1743 } … … 2015 2014 2016 2015 if ( empty($wp_hasher) ) { 2017 require_once( ABSPATH . WPINC . '/class-phpass.php');2018 2016 // By default, use the portable hash from phpass 2019 2017 $wp_hasher = new PasswordHash(8, true); … … 2075 2073 // new style phpass portable hash. 2076 2074 if ( empty($wp_hasher) ) { 2077 require_once( ABSPATH . WPINC . '/class-phpass.php');2078 2075 // By default, use the portable hash from phpass 2079 2076 $wp_hasher = new PasswordHash(8, true);
Note: See TracChangeset
for help on using the changeset viewer.