Changeset 40387
- Timestamp:
- 04/06/2017 06:00:16 PM (8 years ago)
- Location:
- trunk/src
- Files:
-
- 5 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); -
trunk/src/wp-includes/post-template.php
r40042 r40387 794 794 } 795 795 796 require_once ABSPATH . WPINC . '/class-phpass.php'; 796 797 $hasher = new PasswordHash( 8, true ); 797 798 -
trunk/src/wp-includes/user.php
r39600 r40387 2122 2122 // Now insert the key, hashed, into the DB. 2123 2123 if ( empty( $wp_hasher ) ) { 2124 require_once ABSPATH . WPINC . '/class-phpass.php'; 2124 2125 $wp_hasher = new PasswordHash( 8, true ); 2125 2126 } … … 2166 2167 2167 2168 if ( empty( $wp_hasher ) ) { 2169 require_once ABSPATH . WPINC . '/class-phpass.php'; 2168 2170 $wp_hasher = new PasswordHash( 8, true ); 2169 2171 } -
trunk/src/wp-login.php
r40048 r40387 439 439 } 440 440 441 require_once ABSPATH . WPINC . '/class-phpass.php'; 441 442 $hasher = new PasswordHash( 8, true ); 442 443 -
trunk/src/wp-settings.php
r39369 r40387 101 101 require( ABSPATH . WPINC . '/class-wp-error.php' ); 102 102 require( ABSPATH . WPINC . '/pomo/mo.php' ); 103 require( ABSPATH . WPINC . '/class-phpass.php' );104 103 105 104 // Include the wpdb class and, if present, a db.php database drop-in.
Note: See TracChangeset
for help on using the changeset viewer.