From dbef7e25871d4eda7c9d718613b24c2770cea31f Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Fri, 30 May 2014 21:50:24 +0000 Subject: [PATCH] Add paragraph tags to 'Add Existing User' section on 'Add New User' screen in multisite. props jkudish, topher1kenobe. fixes #20271. git-svn-id: https://develop.svn.wordpress.org/trunk@28642 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-admin/user-new.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/wp-admin/user-new.php b/src/wp-admin/user-new.php index b5c9c0bc42..9c8e9ea763 100644 --- a/src/wp-admin/user-new.php +++ b/src/wp-admin/user-new.php @@ -272,10 +272,10 @@ if ( is_multisite() ) { if ( $do_both ) echo '

' . __('Add Existing User') . '

'; if ( !is_super_admin() ) { - _e( 'Enter the email address of an existing user on this network to invite them to this site. That person will be sent an email asking them to confirm the invite.' ); + echo '

' . __( 'Enter the email address of an existing user on this network to invite them to this site. That person will be sent an email asking them to confirm the invite.' ) . '

'; $label = __('E-mail'); } else { - _e( 'Enter the email address or username of an existing user on this network to invite them to this site. That person will be sent an email asking them to confirm the invite.' ); + echo '

' . __( 'Enter the email address or username of an existing user on this network to invite them to this site. That person will be sent an email asking them to confirm the invite.' ) . '

'; $label = __('E-mail or Username'); } ?>