Make WordPress Core


Ignore:
Timestamp:
07/03/2015 04:41:18 PM (10 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/users.php

    r32974 r33067  
    448448echo esc_html( $title );
    449449if ( current_user_can( 'create_users' ) ) { ?>
    450     <a href="user-new.php" class="add-new-h2"><?php echo esc_html_x( 'Add New', 'user' ); ?></a>
     450    <a href="user-new.php" class="page-title-action"><?php echo esc_html_x( 'Add New', 'user' ); ?></a>
    451451<?php } elseif ( is_multisite() && current_user_can( 'promote_users' ) ) { ?>
    452     <a href="user-new.php" class="add-new-h2"><?php echo esc_html_x( 'Add Existing', 'user' ); ?></a>
     452    <a href="user-new.php" class="page-title-action"><?php echo esc_html_x( 'Add Existing', 'user' ); ?></a>
    453453<?php }
    454454
Note: See TracChangeset for help on using the changeset viewer.