Add paragraph tags to 'Add Existing User' section on 'Add New User' screen in multisite.
props jkudish, topher1kenobe. fixes #20271. Built from https://develop.svn.wordpress.org/trunk@28642 git-svn-id: http://core.svn.wordpress.org/trunk@28460 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
a8483f21e2
commit
df597224e5
|
@ -272,10 +272,10 @@ if ( is_multisite() ) {
|
|||
if ( $do_both )
|
||||
echo '<h3 id="add-existing-user">' . __('Add Existing User') . '</h3>';
|
||||
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 '<p>' . __( '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.' ) . '</p>';
|
||||
$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 '<p>' . __( '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.' ) . '</p>';
|
||||
$label = __('E-mail or Username');
|
||||
}
|
||||
?>
|
||||
|
|
Loading…
Reference in New Issue