Ticket #20271: 20271.3.patch
| File 20271.3.patch, 1.5 KB (added by topher1kenobe, 9 months ago) |
|---|
-
wp-admin/user-new.php
258 258 <?php 259 259 if ( is_multisite() ) { 260 260 if ( $do_both ) 261 262 echo '<div id="add-existing-user-wrap">'; 263 261 264 echo '<h3 id="add-existing-user">' . __('Add Existing User') . '</h3>'; 262 265 if ( !is_super_admin() ) { 263 _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.' );266 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>'; 264 267 $label = __('E-mail'); 265 268 } else { 266 _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.' );269 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>'; 267 270 $label = __('E-mail or Username'); 268 271 } 269 272 ?> … … 293 296 <?php submit_button( __( 'Add Existing User '), 'primary', 'adduser', true, array( 'id' => 'addusersub' ) ); ?> 294 297 </form> 295 298 <?php 299 // end wrap div 300 echo '</div>'; 301 302 296 303 } // is_multisite() 297 304 298 305 if ( current_user_can( 'create_users') ) {
