Make WordPress Core


Ignore:
Timestamp:
07/03/2015 04:41:18 PM (9 years ago)
Author:
obenland
Message:

Use a less element-specific class name for links within page titles.

After [32974] these links are no longer within an h2, making the class name
inaccurate. add-new-h1 has the potential to expose the same problem for in a
possible future change.

Fixes #31650.

File:
1 edited

Legend:

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

    r33023 r33067  
    208208if ( ! IS_PROFILE_PAGE ) {
    209209    if ( current_user_can( 'create_users' ) ) { ?>
    210         <a href="user-new.php" class="add-new-h2"><?php echo esc_html_x( 'Add New', 'user' ); ?></a>
     210        <a href="user-new.php" class="page-title-action"><?php echo esc_html_x( 'Add New', 'user' ); ?></a>
    211211    <?php } elseif ( is_multisite() && current_user_can( 'promote_users' ) ) { ?>
    212         <a href="user-new.php" class="add-new-h2"><?php echo esc_html_x( 'Add Existing', 'user' ); ?></a>
     212        <a href="user-new.php" class="page-title-action"><?php echo esc_html_x( 'Add Existing', 'user' ); ?></a>
    213213    <?php }
    214214} ?>
Note: See TracChangeset for help on using the changeset viewer.