Make WordPress Core


Ignore:
Timestamp:
05/28/2013 04:53:46 AM (13 years ago)
Author:
SergeyBiryukov
Message:

Remove unnecessary esc_attr() call and redundant title attributes. props zeo. fixes #24437.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/includes/class-wp-posts-list-table.php

    r24123 r24380  
    10471047    ?>
    10481048        <p class="submit inline-edit-save">
    1049             <a accesskey="c" href="#inline-edit" title="<?php esc_attr_e( 'Cancel' ); ?>" class="button-secondary cancel alignleft"><?php _e( 'Cancel' ); ?></a>
     1049            <a accesskey="c" href="#inline-edit" class="button-secondary cancel alignleft"><?php _e( 'Cancel' ); ?></a>
    10501050            <?php if ( ! $bulk ) {
    10511051                wp_nonce_field( 'inlineeditnonce', '_inline_edit', false );
    1052                 $update_text = __( 'Update' );
    10531052                ?>
    1054                 <a accesskey="s" href="#inline-edit" title="<?php esc_attr_e( 'Update' ); ?>" class="button-primary save alignright"><?php echo esc_attr( $update_text ); ?></a>
     1053                <a accesskey="s" href="#inline-edit" class="button-primary save alignright"><?php _e( 'Update' ); ?></a>
    10551054                <span class="spinner"></span>
    10561055            <?php } else {
Note: See TracChangeset for help on using the changeset viewer.