Make WordPress Core

Changeset 28642


Ignore:
Timestamp:
05/30/2014 09:50:24 PM (10 years ago)
Author:
SergeyBiryukov
Message:

Add paragraph tags to 'Add Existing User' section on 'Add New User' screen in multisite.

props jkudish, topher1kenobe.
fixes #20271.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/user-new.php

    r27838 r28642  
    273273        echo '<h3 id="add-existing-user">' . __('Add Existing User') . '</h3>';
    274274    if ( !is_super_admin() ) {
    275         _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.' );
     275        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>';
    276276        $label = __('E-mail');
    277277    } else {
    278         _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.' );
     278        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>';
    279279        $label = __('E-mail or Username');
    280280    }
Note: See TracChangeset for help on using the changeset viewer.