Login and Registration: Only call `get_blog_details()` in `wp_lostpassword_url()` on Multisite.

The function does not exist on single site.

Follow-up to [48672].

See #39311.

git-svn-id: https://develop.svn.wordpress.org/trunk@48673 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Sergey Biryukov 2020-07-28 17:38:37 +00:00
parent 087d11282a
commit d1ef380858
1 changed files with 7 additions and 2 deletions

View File

@ -613,9 +613,14 @@ function wp_lostpassword_url( $redirect = '' ) {
$args['redirect_to'] = urlencode( $redirect ); $args['redirect_to'] = urlencode( $redirect );
} }
$blog_details = get_blog_details(); $site_path = '';
$lostpassword_url = add_query_arg( $args, network_site_url( $blog_details->path . 'wp-login.php', 'login' ) ); if ( is_multisite() ) {
$blog_details = get_blog_details();
$site_path = $blog_details->path . 'wp-login.php';
}
$lostpassword_url = add_query_arg( $args, network_site_url( $site_path . 'wp-login.php', 'login' ) );
/** /**
* Filters the Lost Password URL. * Filters the Lost Password URL.