Make WordPress Core

Ticket #37004: 37004.4.diff

File 37004.4.diff, 4.3 KB (added by mihai2u, 7 years ago)
  • src/wp-admin/includes/class-wp-media-list-table.php

    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 6e9e362..002c79e 100644
    a b private function _get_row_actions( $post, $att_title ) { 
    678678                                }
    679679                        }
    680680                        $actions['view'] = sprintf(
    681                                 '<a href="%s" aria-label="%s" rel="permalink">%s</a>',
     681                                '<a href="%s" aria-label="%s" rel="bookmark">%s</a>',
    682682                                get_permalink( $post->ID ),
    683683                                /* translators: %s: attachment title */
    684684                                esc_attr( sprintf( __( 'View &#8220;%s&#8221;' ), $att_title ) ),
    private function _get_row_actions( $post, $att_title ) { 
    737737                        }
    738738                        if ( ! $this->is_trash ) {
    739739                                $actions['view'] = sprintf(
    740                                         '<a href="%s" aria-label="%s" rel="permalink">%s</a>',
     740                                        '<a href="%s" aria-label="%s" rel="bookmark">%s</a>',
    741741                                        get_permalink( $post->ID ),
    742742                                        /* translators: %s: attachment title */
    743743                                        esc_attr( sprintf( __( 'View &#8220;%s&#8221;' ), $att_title ) ),
  • src/wp-admin/includes/class-wp-posts-list-table.php

    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 9881c51..6a4b652 100644
    a b protected function handle_row_actions( $post, $column_name, $primary ) { 
    12881288                                if ( $can_edit_post ) {
    12891289                                        $preview_link = get_preview_post_link( $post );
    12901290                                        $actions['view'] = sprintf(
    1291                                                 '<a href="%s" rel="permalink" aria-label="%s">%s</a>',
     1291                                                '<a href="%s" rel="bookmark" aria-label="%s">%s</a>',
    12921292                                                esc_url( $preview_link ),
    12931293                                                /* translators: %s: post title */
    12941294                                                esc_attr( sprintf( __( 'Preview &#8220;%s&#8221;' ), $title ) ),
    protected function handle_row_actions( $post, $column_name, $primary ) { 
    12971297                                }
    12981298                        } elseif ( 'trash' != $post->post_status ) {
    12991299                                $actions['view'] = sprintf(
    1300                                         '<a href="%s" rel="permalink" aria-label="%s">%s</a>',
     1300                                        '<a href="%s" rel="bookmark" aria-label="%s">%s</a>',
    13011301                                        get_permalink( $post->ID ),
    13021302                                        /* translators: %s: post title */
    13031303                                        esc_attr( sprintf( __( 'View &#8220;%s&#8221;' ), $title ) ),
    public function inline_edit() { 
    13981398
    13991399                <tr id="<?php echo $bulk ? 'bulk-edit' : 'inline-edit'; ?>" class="inline-edit-row inline-edit-row-<?php echo "$hclass inline-edit-" . $screen->post_type;
    14001400                        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}";
    1401                 ?>" style="display: none"><td colspan="<?php echo $this->get_column_count(); ?>" class="colspanchange">
     1401                ?>" style="display: none"><td class="colspanchange">
    14021402
    14031403                <fieldset class="inline-edit-col-left">
    14041404                        <legend class="inline-edit-legend"><?php echo $bulk ? __( 'Bulk Edit' ) : __( 'Quick Edit' ); ?></legend>
  • src/wp-admin/includes/class-wp-screen.php

    diff --git a/src/wp-admin/includes/class-wp-screen.php b/src/wp-admin/includes/class-wp-screen.php
    index de65c86..1f2185d 100644
    a b public function render_per_page_options() { 
    11811181                        <?php if ( $per_page_label ) : ?>
    11821182                                <label for="<?php echo esc_attr( $option ); ?>"><?php echo $per_page_label; ?></label>
    11831183                                <input type="number" step="1" min="1" max="999" class="screen-per-page" name="wp_screen_options[value]"
    1184                                         id="<?php echo esc_attr( $option ); ?>" maxlength="3"
     1184                                        id="<?php echo esc_attr( $option ); ?>"
    11851185                                        value="<?php echo esc_attr( $per_page ); ?>" />
    11861186                        <?php endif; ?>
    11871187                                <input type="hidden" name="wp_screen_options[option]" value="<?php echo esc_attr( $option ); ?>" />
  • src/wp-admin/includes/class-wp-terms-list-table.php

    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 7d59624..d6a4eec 100644
    a b public function display_rows_or_placeholder() { 
    235235                $terms = get_terms( $taxonomy, $args );
    236236
    237237                if ( empty( $terms ) || ! is_array( $terms ) ) {
    238                         echo '<tr class="no-items"><td class="colspanchange" colspan="' . $this->get_column_count() . '">';
     238                        echo '<tr class="no-items"><td class="colspanchange">';
    239239                        $this->no_items();
    240240                        echo '</td></tr>';
    241241                        return;