Make WordPress Core

Ticket #33605: 33605.2.patch

File 33605.2.patch, 1.0 KB (added by afercia, 10 years ago)
  • src/wp-admin/user-new.php

     
    305305<?php
    306306if ( is_multisite() ) {
    307307        if ( $do_both )
    308                 echo '<h3 id="add-existing-user">' . __('Add Existing User') . '</h3>';
     308                echo '<h2 id="add-existing-user">' . __( 'Add Existing User' ) . '</h2>';
    309309        if ( !is_super_admin() ) {
    310310                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>';
    311311                $label = __('Email');
     
    367367
    368368if ( current_user_can( 'create_users') ) {
    369369        if ( $do_both )
    370                 echo '<h3 id="create-new-user">' . __( 'Add New User' ) . '</h3>';
     370                echo '<h2 id="create-new-user">' . __( 'Add New User' ) . '</h2>';
    371371?>
    372372<p><?php _e('Create a brand new user and add them to this site.'); ?></p>
    373373<form method="post" name="createuser" id="createuser" class="validate" novalidate="novalidate"<?php