diff --git a/wp-includes/option.php b/wp-includes/option.php index 05c6cc7421..aa98477417 100644 --- a/wp-includes/option.php +++ b/wp-includes/option.php @@ -1756,7 +1756,7 @@ function register_initial_settings() { ), ), 'type' => 'string', - 'description' => __( 'This address is used for admin purposes. If you change this we will send you an email at your new address to confirm it. The new address will not become active until confirmed.' ), + 'description' => is_multisite() ? __( 'This address is used for admin purposes. If you change this we will send you an email at your new address to confirm it. The new address will not become active until confirmed.' ) : __( 'This address is used for admin purposes, like new user notification.' ), ) ); register_setting( 'general', 'timezone_string', array( diff --git a/wp-includes/version.php b/wp-includes/version.php index ef0dd5b483..748ac986ec 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.8-alpha-39404'; +$wp_version = '4.8-alpha-39406'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.