Make WordPress Core

Changeset 35953


Ignore:
Timestamp:
12/15/2015 10:32:15 PM (9 years ago)
Author:
afercia
Message:

Accessibility: Remove title attributes from the Plugin Cards on the Plugin install screen.

Fixes #35050.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/includes/class-wp-plugin-install-list-table.php

    r35241 r35953  
    468468                    case 'latest_installed':
    469469                    case 'newer_installed':
    470                         $action_links[] = '<span class="button button-disabled" title="' . esc_attr__( 'This plugin is already installed and is up to date' ) . ' ">' . _x( 'Installed', 'plugin' ) . '</span>';
     470                        $action_links[] = '<span class="button button-disabled">' . _x( 'Installed', 'plugin' ) . '</span>';
    471471                        break;
    472472                }
     
    530530                </div>
    531531                <div class="column-updated">
    532                     <strong><?php _e( 'Last Updated:' ); ?></strong> <span title="<?php echo esc_attr( date_i18n( $date_format, $last_updated_timestamp ) ); ?>">
    533                         <?php printf( __( '%s ago' ), human_time_diff( $last_updated_timestamp ) ); ?>
    534                     </span>
     532                    <strong><?php _e( 'Last Updated:' ); ?></strong> <?php printf( __( '%s ago' ), human_time_diff( $last_updated_timestamp ) ); ?>
    535533                </div>
    536534                <div class="column-downloaded">
Note: See TracChangeset for help on using the changeset viewer.