diff --git a/src/wp-admin/includes/class-wp-media-list-table.php b/src/wp-admin/includes/class-wp-media-list-table.php
index d7b17c5..e18f437 100644
a
|
b
|
class WP_Media_List_Table extends WP_List_Table { |
676 | 676 | } |
677 | 677 | } |
678 | 678 | $actions['view'] = sprintf( |
679 | | '<a href="%s" aria-label="%s" rel="permalink">%s</a>', |
| 679 | '<a href="%s" aria-label="%s" rel="bookmark">%s</a>', |
680 | 680 | get_permalink( $post->ID ), |
681 | 681 | /* translators: %s: attachment title */ |
682 | 682 | esc_attr( sprintf( __( 'View “%s”' ), $att_title ) ), |
… |
… |
class WP_Media_List_Table extends WP_List_Table { |
735 | 735 | } |
736 | 736 | if ( ! $this->is_trash ) { |
737 | 737 | $actions['view'] = sprintf( |
738 | | '<a href="%s" aria-label="%s" rel="permalink">%s</a>', |
| 738 | '<a href="%s" aria-label="%s" rel="bookmark">%s</a>', |
739 | 739 | get_permalink( $post->ID ), |
740 | 740 | /* translators: %s: attachment title */ |
741 | 741 | esc_attr( sprintf( __( 'View “%s”' ), $att_title ) ), |
diff --git a/src/wp-admin/includes/class-wp-posts-list-table.php b/src/wp-admin/includes/class-wp-posts-list-table.php
index fe8808b..c60aecb 100644
a
|
b
|
class WP_Posts_List_Table extends WP_List_Table { |
1255 | 1255 | if ( $can_edit_post ) { |
1256 | 1256 | $preview_link = get_preview_post_link( $post ); |
1257 | 1257 | $actions['view'] = sprintf( |
1258 | | '<a href="%s" rel="permalink" aria-label="%s">%s</a>', |
| 1258 | '<a href="%s" rel="bookmark" aria-label="%s">%s</a>', |
1259 | 1259 | esc_url( $preview_link ), |
1260 | 1260 | /* translators: %s: post title */ |
1261 | 1261 | esc_attr( sprintf( __( 'Preview “%s”' ), $title ) ), |
… |
… |
class WP_Posts_List_Table extends WP_List_Table { |
1264 | 1264 | } |
1265 | 1265 | } elseif ( 'trash' != $post->post_status ) { |
1266 | 1266 | $actions['view'] = sprintf( |
1267 | | '<a href="%s" rel="permalink" aria-label="%s">%s</a>', |
| 1267 | '<a href="%s" rel="bookmark" aria-label="%s">%s</a>', |
1268 | 1268 | get_permalink( $post->ID ), |
1269 | 1269 | /* translators: %s: post title */ |
1270 | 1270 | esc_attr( sprintf( __( 'View “%s”' ), $title ) ), |
… |
… |
class WP_Posts_List_Table extends WP_List_Table { |
1365 | 1365 | |
1366 | 1366 | <tr id="<?php echo $bulk ? 'bulk-edit' : 'inline-edit'; ?>" class="inline-edit-row inline-edit-row-<?php echo "$hclass inline-edit-" . $screen->post_type; |
1367 | 1367 | echo $bulk ? " bulk-edit-row bulk-edit-row-$hclass bulk-edit-{$screen->post_type}" : " quick-edit-row quick-edit-row-$hclass inline-edit-{$screen->post_type}"; |
1368 | | ?>" style="display: none"><td colspan="<?php echo $this->get_column_count(); ?>" class="colspanchange"> |
| 1368 | ?>" style="display: none"><td class="colspanchange"> |
1369 | 1369 | |
1370 | 1370 | <fieldset class="inline-edit-col-left"> |
1371 | 1371 | <legend class="inline-edit-legend"><?php echo $bulk ? __( 'Bulk Edit' ) : __( 'Quick Edit' ); ?></legend> |
diff --git a/src/wp-admin/includes/class-wp-screen.php b/src/wp-admin/includes/class-wp-screen.php
index a7d9a1a..75dd5b3 100644
a
|
b
|
final class WP_Screen { |
1180 | 1180 | <?php if ( $per_page_label ) : ?> |
1181 | 1181 | <label for="<?php echo esc_attr( $option ); ?>"><?php echo $per_page_label; ?></label> |
1182 | 1182 | <input type="number" step="1" min="1" max="999" class="screen-per-page" name="wp_screen_options[value]" |
1183 | | id="<?php echo esc_attr( $option ); ?>" maxlength="3" |
| 1183 | id="<?php echo esc_attr( $option ); ?>" |
1184 | 1184 | value="<?php echo esc_attr( $per_page ); ?>" /> |
1185 | 1185 | <?php endif; ?> |
1186 | 1186 | <input type="hidden" name="wp_screen_options[option]" value="<?php echo esc_attr( $option ); ?>" /> |
diff --git a/src/wp-admin/includes/class-wp-terms-list-table.php b/src/wp-admin/includes/class-wp-terms-list-table.php
index dcef0d7..07ac974 100644
a
|
b
|
class WP_Terms_List_Table extends WP_List_Table { |
586 | 586 | ?> |
587 | 587 | |
588 | 588 | <form method="get"><table style="display: none"><tbody id="inlineedit"> |
589 | | <tr id="inline-edit" class="inline-edit-row" style="display: none"><td colspan="<?php echo $this->get_column_count(); ?>" class="colspanchange"> |
| 589 | <tr id="inline-edit" class="inline-edit-row" style="display: none"><td class="colspanchange"> |
590 | 590 | |
591 | 591 | <fieldset> |
592 | 592 | <legend class="inline-edit-legend"><?php _e( 'Quick Edit' ); ?></legend> |