Use the `WPINC` constant when loading `class-phpass.php`
Props wojtek.szkutnik See #14157. Built from https://develop.svn.wordpress.org/trunk@28903 git-svn-id: http://core.svn.wordpress.org/trunk@28702 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
a8d0832a15
commit
c8852cc909
|
@ -1860,7 +1860,7 @@ function wp_hash_password($password) {
|
|||
global $wp_hasher;
|
||||
|
||||
if ( empty($wp_hasher) ) {
|
||||
require_once( ABSPATH . 'wp-includes/class-phpass.php');
|
||||
require_once( ABSPATH . WPINC . '/class-phpass.php');
|
||||
// By default, use the portable hash from phpass
|
||||
$wp_hasher = new PasswordHash(8, true);
|
||||
}
|
||||
|
@ -1918,7 +1918,7 @@ function wp_check_password($password, $hash, $user_id = '') {
|
|||
// If the stored hash is longer than an MD5, presume the
|
||||
// new style phpass portable hash.
|
||||
if ( empty($wp_hasher) ) {
|
||||
require_once( ABSPATH . 'wp-includes/class-phpass.php');
|
||||
require_once( ABSPATH . WPINC . '/class-phpass.php');
|
||||
// By default, use the portable hash from phpass
|
||||
$wp_hasher = new PasswordHash(8, true);
|
||||
}
|
||||
|
|
|
@ -694,7 +694,7 @@ function post_password_required( $post = null ) {
|
|||
if ( ! isset( $_COOKIE['wp-postpass_' . COOKIEHASH] ) )
|
||||
return true;
|
||||
|
||||
require_once ABSPATH . 'wp-includes/class-phpass.php';
|
||||
require_once ABSPATH . WPINC . '/class-phpass.php';
|
||||
$hasher = new PasswordHash( 8, true );
|
||||
|
||||
$hash = wp_unslash( $_COOKIE[ 'wp-postpass_' . COOKIEHASH ] );
|
||||
|
|
|
@ -2003,7 +2003,7 @@ function check_password_reset_key($key, $login) {
|
|||
return new WP_Error('invalid_key', __('Invalid key'));
|
||||
|
||||
if ( empty( $wp_hasher ) ) {
|
||||
require_once ABSPATH . 'wp-includes/class-phpass.php';
|
||||
require_once ABSPATH . WPINC . '/class-phpass.php';
|
||||
$wp_hasher = new PasswordHash( 8, true );
|
||||
}
|
||||
|
||||
|
|
|
@ -348,7 +348,7 @@ function retrieve_password() {
|
|||
|
||||
// Now insert the key, hashed, into the DB.
|
||||
if ( empty( $wp_hasher ) ) {
|
||||
require_once ABSPATH . 'wp-includes/class-phpass.php';
|
||||
require_once ABSPATH . WPINC . '/class-phpass.php';
|
||||
$wp_hasher = new PasswordHash( 8, true );
|
||||
}
|
||||
$hashed = $wp_hasher->HashPassword( $key );
|
||||
|
@ -450,7 +450,7 @@ $interim_login = isset($_REQUEST['interim-login']);
|
|||
switch ($action) {
|
||||
|
||||
case 'postpass' :
|
||||
require_once ABSPATH . 'wp-includes/class-phpass.php';
|
||||
require_once ABSPATH . WPINC . '/class-phpass.php';
|
||||
$hasher = new PasswordHash( 8, true );
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in New Issue