Ticket #55575: 55575.1.diff
File 55575.1.diff, 3.1 KB (added by , 2 years ago) |
---|
-
src/js/_enqueues/admin/inline-edit-post.js
294 294 editRow = $('#inline-edit').clone(true); 295 295 $( 'td', editRow ).attr( 'colspan', $( 'th:visible, td:visible', '.widefat:first thead' ).length ); 296 296 297 $( 'td', editRow ).find('#quick-edit-legend').removeAttr('id'); 298 $( 'td', editRow ).find('p[id^="quick-edit-"]').removeAttr('id'); 299 297 300 $(t.what+id).removeClass('is-expanded').hide().after(editRow).after('<tr class="hidden"></tr>'); 298 301 299 302 // Populate fields in the quick edit window. -
src/wp-admin/includes/class-wp-posts-list-table.php
1611 1611 ?> 1612 1612 <tr id="<?php echo $bulk ? 'bulk-edit' : 'inline-edit'; ?>" class="<?php echo $classes; ?>" style="display: none"> 1613 1613 <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"> 1615 1615 <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> 1617 1617 <div class="inline-edit-col"> 1618 1618 1619 1619 <?php if ( post_type_supports( $screen->post_type, 'title' ) ) : ?> … … 1837 1837 <div class="inline-edit-tags-wrap"> 1838 1838 <label class="inline-edit-tags"> 1839 1839 <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> 1841 1841 </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> 1843 1843 </div> 1844 1844 <?php endif; // current_user_can( 'assign_terms' ) ?> 1845 1845