From ea03ecbe668025cc497374a5db044b9ac69c4a2e Mon Sep 17 00:00:00 2001 From: Jeremy Felt Date: Mon, 28 Sep 2015 23:30:24 +0000 Subject: [PATCH] Fixes #33816. MS: Adjust formatting of code in `site-new.php` to improve readability. Fixes #34066. Built from https://develop.svn.wordpress.org/trunk@34673 git-svn-id: http://core.svn.wordpress.org/trunk@34637 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/network/site-new.php | 12 ++++++------ wp-includes/version.php | 2 +- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/wp-admin/network/site-new.php b/wp-admin/network/site-new.php index ea87438f95..92765dc6f5 100644 --- a/wp-admin/network/site-new.php +++ b/wp-admin/network/site-new.php @@ -19,12 +19,12 @@ if ( ! is_multisite() ) if ( ! current_user_can( 'manage_sites' ) ) wp_die( __( 'You do not have sufficient permissions to add sites to this network.' ) ); - get_current_screen()->add_help_tab( array( - 'id' => 'overview', - 'title' => __('Overview'), - 'content' => - '

' . __('This screen is for Super Admins to add new sites to the network. This is not affected by the registration settings.') . '

' . - '

' . __('If the admin email for the new site does not exist in the database, a new user will also be created.') . '

' +get_current_screen()->add_help_tab( array( + 'id' => 'overview', + 'title' => __('Overview'), + 'content' => + '

' . __('This screen is for Super Admins to add new sites to the network. This is not affected by the registration settings.') . '

' . + '

' . __('If the admin email for the new site does not exist in the database, a new user will also be created.') . '

' ) ); get_current_screen()->set_help_sidebar( diff --git a/wp-includes/version.php b/wp-includes/version.php index 376186b31c..836cfa6d76 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.4-alpha-34672'; +$wp_version = '4.4-alpha-34673'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.