- Timestamp:
- 07/16/2014 10:49:53 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-wp-plugin-install-list-table.php
r29171 r29201 260 260 case 'install': 261 261 if ( $status['url'] ) { 262 $action_links[] = '<a class="install-now button" href="' . $status['url'] . '" title="' . esc_attr( sprintf( __( 'Install %s' ), $name ) ). '">' . __( 'Install Now' ) . '</a>';262 $action_links[] = '<a class="install-now button" href="' . $status['url'] . '" aria-labelledby="' . $plugin['slug'] . '">' . __( 'Install Now' ) . '</a>'; 263 263 } 264 264 … … 266 266 case 'update_available': 267 267 if ( $status['url'] ) { 268 $action_links[] = '<a class="button" href="' . $status['url'] . '" title="' . esc_attr( sprintf( __( 'Update to version %s' ), $status['version'] ) ). '">' . __( 'Update Now' ) . '</a>';268 $action_links[] = '<a class="button" href="' . $status['url'] . '" aria-labelledby="' . $plugin['slug'] . '">' . __( 'Update Now' ) . '</a>'; 269 269 } 270 270 … … 280 280 '&TB_iframe=true&width=600&height=550' ); 281 281 282 $action_links[] = '<a href="' . esc_attr( $details_link ) . '" class="thickbox" title="' .283 esc_attr( sprintf( __( 'More information about %s' ), $name ) ) . '">' . __( 'More Details' ) . '</a>'; 282 $action_links[] = '<a href="' . esc_attr( $details_link ) . '" class="thickbox" aria-labelledby="' . $plugin['slug'] . '" data-title="' . esc_attr( $name ) . '">' . __( 'More Details' ) . '</a>'; 283 284 284 285 285 /**
Note: See TracChangeset
for help on using the changeset viewer.