From 325c7411fcf934bd06176fc41ea07e279a10784a Mon Sep 17 00:00:00 2001 From: Jeremy Felt Date: Wed, 19 Oct 2016 05:54:29 +0000 Subject: [PATCH] Multisite: Replace `get_blog_details()` in `/wp-admin/ms-delete-site.php` with `get_site()`. Props spacedmonkey, iamfriendly. See #37102. Fixes #38347. Built from https://develop.svn.wordpress.org/trunk@38822 git-svn-id: http://core.svn.wordpress.org/trunk@38765 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/ms-delete-site.php | 2 +- wp-includes/version.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-admin/ms-delete-site.php b/wp-admin/ms-delete-site.php index 3e77bbdbe9..9192509d94 100644 --- a/wp-admin/ms-delete-site.php +++ b/wp-admin/ms-delete-site.php @@ -24,7 +24,7 @@ if ( isset( $_GET['h'] ) && $_GET['h'] != '' && get_option( 'delete_blog_hash' ) } } -$blog = get_blog_details(); +$blog = get_site(); $user = wp_get_current_user(); $title = __( 'Delete Site' ); diff --git a/wp-includes/version.php b/wp-includes/version.php index 86e26d8ce9..30b8d795c0 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.7-alpha-38821'; +$wp_version = '4.7-alpha-38822'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.