Make WordPress Core

Ticket #37004: 37004.3.diff

File 37004.3.diff, 4.4 KB (added by michalzuber, 8 years ago)

Looks good, but class="colspanchange" should stay; wp-admin/js/common.js is using it.

  • 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 d7b17c5..e18f437 100644
    a b class WP_Media_List_Table extends WP_List_Table { 
    676676                                }
    677677                        }
    678678                        $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>',
    680680                                get_permalink( $post->ID ),
    681681                                /* translators: %s: attachment title */
    682682                                esc_attr( sprintf( __( 'View &#8220;%s&#8221;' ), $att_title ) ),
    class WP_Media_List_Table extends WP_List_Table { 
    735735                        }
    736736                        if ( ! $this->is_trash ) {
    737737                                $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>',
    739739                                        get_permalink( $post->ID ),
    740740                                        /* translators: %s: attachment title */
    741741                                        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 fe8808b..c60aecb 100644
    a b class WP_Posts_List_Table extends WP_List_Table { 
    12551255                                if ( $can_edit_post ) {
    12561256                                        $preview_link = get_preview_post_link( $post );
    12571257                                        $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>',
    12591259                                                esc_url( $preview_link ),
    12601260                                                /* translators: %s: post title */
    12611261                                                esc_attr( sprintf( __( 'Preview &#8220;%s&#8221;' ), $title ) ),
    class WP_Posts_List_Table extends WP_List_Table { 
    12641264                                }
    12651265                        } elseif ( 'trash' != $post->post_status ) {
    12661266                                $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>',
    12681268                                        get_permalink( $post->ID ),
    12691269                                        /* translators: %s: post title */
    12701270                                        esc_attr( sprintf( __( 'View &#8220;%s&#8221;' ), $title ) ),
    class WP_Posts_List_Table extends WP_List_Table { 
    13651365
    13661366                <tr id="<?php echo $bulk ? 'bulk-edit' : 'inline-edit'; ?>" class="inline-edit-row inline-edit-row-<?php echo "$hclass inline-edit-" . $screen->post_type;
    13671367                        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">
    13691369
    13701370                <fieldset class="inline-edit-col-left">
    13711371                        <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 a7d9a1a..75dd5b3 100644
    a b final class WP_Screen { 
    11801180                        <?php if ( $per_page_label ) : ?>
    11811181                                <label for="<?php echo esc_attr( $option ); ?>"><?php echo $per_page_label; ?></label>
    11821182                                <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 ); ?>"
    11841184                                        value="<?php echo esc_attr( $per_page ); ?>" />
    11851185                        <?php endif; ?>
    11861186                                <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 dcef0d7..07ac974 100644
    a b class WP_Terms_List_Table extends WP_List_Table { 
    586586?>
    587587
    588588        <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">
    590590
    591591                        <fieldset>
    592592                                <legend class="inline-edit-legend"><?php _e( 'Quick Edit' ); ?></legend>