Network Admin: After [41923], move the second <p> tag to a new line for better readability.

See #41652.
Built from https://develop.svn.wordpress.org/trunk@41924


git-svn-id: http://core.svn.wordpress.org/trunk@41758 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Sergey Biryukov 2017-10-18 20:51:48 +00:00
parent a749494900
commit d2499c4212
2 changed files with 3 additions and 2 deletions

View File

@ -118,7 +118,8 @@ function network_step1( $errors = false ) {
/* translators: %s: Plugins screen URL */
__( 'Please <a href="%s">deactivate your plugins</a> before enabling the Network feature.' ),
admin_url( 'plugins.php?plugin_status=active' )
) . '</p></div><p>' . __( 'Once the network is created, you may reactivate your plugins.' ) . '</p>';
) . '</p></div>';
echo '<p>' . __( 'Once the network is created, you may reactivate your plugins.' ) . '</p>';
echo '</div>';
include( ABSPATH . 'wp-admin/admin-footer.php' );
die();

View File

@ -4,7 +4,7 @@
*
* @global string $wp_version
*/
$wp_version = '4.9-beta2-41923';
$wp_version = '4.9-beta2-41924';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.