Make WordPress Core

Ticket #55575: 55575.1.diff

File 55575.1.diff, 3.1 KB (added by sabernhardt, 2 years ago)

removing ID from extra quick edit elements

  • src/js/_enqueues/admin/inline-edit-post.js

     
    294294                editRow = $('#inline-edit').clone(true);
    295295                $( 'td', editRow ).attr( 'colspan', $( 'th:visible, td:visible', '.widefat:first thead' ).length );
    296296
     297                $( 'td', editRow ).find('#quick-edit-legend').removeAttr('id');
     298                $( 'td', editRow ).find('p[id^="quick-edit-"]').removeAttr('id');
     299
    297300                $(t.what+id).removeClass('is-expanded').hide().after(editRow).after('<tr class="hidden"></tr>');
    298301
    299302                // Populate fields in the quick edit window.
  • src/wp-admin/includes/class-wp-posts-list-table.php

     
    16111611                        ?>
    16121612                        <tr id="<?php echo $bulk ? 'bulk-edit' : 'inline-edit'; ?>" class="<?php echo $classes; ?>" style="display: none">
    16131613                        <td colspan="<?php echo $this->get_column_count(); ?>" class="colspanchange">
    1614                         <div class="inline-edit-wrapper" role="region" aria-labelledby="inline-edit-legend">
     1614                        <div class="inline-edit-wrapper" role="region" aria-labelledby="<?php echo $bulk ? 'bulk' : 'quick'; ?>-edit-legend">
    16151615                        <fieldset class="inline-edit-col-left">
    1616                                 <legend class="inline-edit-legend" id="inline-edit-legend"><?php echo $bulk ? __( 'Bulk Edit' ) : __( 'Quick Edit' ); ?></legend>
     1616                                <legend class="inline-edit-legend" id="<?php echo $bulk ? 'bulk' : 'quick'; ?>-edit-legend"><?php echo $bulk ? __( 'Bulk Edit' ) : __( 'Quick Edit' ); ?></legend>
    16171617                                <div class="inline-edit-col">
    16181618
    16191619                                <?php if ( post_type_supports( $screen->post_type, 'title' ) ) : ?>
     
    18371837                                                        <div class="inline-edit-tags-wrap">
    18381838                                                        <label class="inline-edit-tags">
    18391839                                                                <span class="title"><?php echo esc_html( $taxonomy->labels->name ); ?></span>
    1840                                                                 <textarea data-wp-taxonomy="<?php echo $taxonomy_name; ?>" cols="22" rows="1" name="tax_input[<?php echo esc_attr( $taxonomy->name ); ?>]" class="tax_input_<?php echo esc_attr( $taxonomy->name ); ?>" aria-describedby="inline-edit-<?php echo esc_attr( $taxonomy->name ); ?>-desc"></textarea>
     1840                                                                <textarea data-wp-taxonomy="<?php echo $taxonomy_name; ?>" cols="22" rows="1" name="tax_input[<?php echo esc_attr( $taxonomy->name ); ?>]" class="tax_input_<?php echo esc_attr( $taxonomy->name ); ?>" aria-describedby="<?php echo $bulk ? 'bulk' : 'quick'; ?>-edit-<?php echo esc_attr( $taxonomy->name ); ?>-desc"></textarea>
    18411841                                                        </label>
    1842                                                         <p class="howto" id="inline-edit-<?php echo esc_attr( $taxonomy->name ); ?>-desc"><?php echo esc_html( $taxonomy->labels->separate_items_with_commas ); ?></p>
     1842                                                        <p class="howto" id="<?php echo $bulk ? 'bulk' : 'quick'; ?>-edit-<?php echo esc_attr( $taxonomy->name ); ?>-desc"><?php echo esc_html( $taxonomy->labels->separate_items_with_commas ); ?></p>
    18431843                                                        </div>
    18441844                                                <?php endif; // current_user_can( 'assign_terms' ) ?>
    18451845