Make WordPress Core

Ticket #33605: 33605.patch

File 33605.patch, 1.0 KB (added by Cheffheid, 10 years ago)

Heading fix (only appear on multi site installs)

  • wp-admin/user-new.php

     
    286286<?php
    287287if ( is_multisite() ) {
    288288        if ( $do_both )
    289                 echo '<h3 id="add-existing-user">' . __('Add Existing User') . '</h3>';
     289                echo '<h2 id="add-existing-user">' . __('Add Existing User') . '</h2>';
    290290        if ( !is_super_admin() ) {
    291291                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>';
    292292                $label = __('Email');
     
    348348
    349349if ( current_user_can( 'create_users') ) {
    350350        if ( $do_both )
    351                 echo '<h3 id="create-new-user">' . __( 'Add New User' ) . '</h3>';
     351                echo '<h2 id="create-new-user">' . __( 'Add New User' ) . '</h2>';
    352352?>
    353353<p><?php _e('Create a brand new user and add them to this site.'); ?></p>
    354354<form method="post" name="createuser" id="createuser" class="validate" novalidate="novalidate"<?php