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

See #41652.

git-svn-id: https://develop.svn.wordpress.org/trunk@41924 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Sergey Biryukov 2017-10-18 20:50:58 +00:00
parent 76c2aa8c85
commit a8518be72b
1 changed files with 2 additions and 1 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();