Changeset 38371
- Timestamp:
- 08/26/2016 05:39:37 PM (8 years ago)
- Location:
- trunk/src
- Files:
-
- 5 edited
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); -
trunk/src/wp-includes/post-template.php
r38348 r38371 786 786 return true; 787 787 788 require_once ABSPATH . WPINC . '/class-phpass.php';789 788 $hasher = new PasswordHash( 8, true ); 790 789 -
trunk/src/wp-includes/user.php
r38125 r38371 2096 2096 // Now insert the key, hashed, into the DB. 2097 2097 if ( empty( $wp_hasher ) ) { 2098 require_once ABSPATH . WPINC . '/class-phpass.php';2099 2098 $wp_hasher = new PasswordHash( 8, true ); 2100 2099 } … … 2141 2140 2142 2141 if ( empty( $wp_hasher ) ) { 2143 require_once ABSPATH . WPINC . '/class-phpass.php';2144 2142 $wp_hasher = new PasswordHash( 8, true ); 2145 2143 } -
trunk/src/wp-login.php
r38307 r38371 440 440 } 441 441 442 require_once ABSPATH . WPINC . '/class-phpass.php';443 442 $hasher = new PasswordHash( 8, true ); 444 443 -
trunk/src/wp-settings.php
r38364 r38371 96 96 require( ABSPATH . WPINC . '/class-wp-error.php' ); 97 97 require( ABSPATH . WPINC . '/pomo/mo.php' ); 98 require( ABSPATH . WPINC . '/class-phpass.php' ); 98 99 99 100 // Include the wpdb class and, if present, a db.php database drop-in.
Note: See TracChangeset
for help on using the changeset viewer.