Make WordPress Core

Ticket #31654: 31654.9.colspan.patch

File 31654.9.colspan.patch, 1.7 KB (added by afercia, 9 years ago)

Quick Edit and Bulk Edit colspan fix.

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

     
    8181                var te = '', type = this.type, tax, c = true;
    8282                this.revert();
    8383
    84                 $('#bulk-edit td').attr('colspan', $('.widefat:first thead th:visible').length);
     84                $( '#bulk-edit td' ).attr( 'colspan', $( 'th:visible, #cb', '.widefat:first thead' ).length );
    8585                // Insert the editor at the top of the table with an empty row above to maintain zebra striping.
    8686                $('table.widefat tbody').prepend( $('#bulk-edit') ).prepend('<tr class="hidden"></tr>');
    8787                $('#bulk-edit').addClass('inline-editor').show();
     
    131131
    132132                // add the new edit row with an extra blank row underneath to maintain zebra striping.
    133133                editRow = $('#inline-edit').clone(true);
    134                 $('td', editRow).attr('colspan', $('.widefat:first thead th:visible').length);
     134                $( 'td', editRow ).attr( 'colspan', $(  'th:visible, #cb', '.widefat:first thead' ).length );
    135135
    136136                $(t.what+id).hide().after(editRow).after('<tr class="hidden"></tr>');
    137137
  • src/wp-admin/js/inline-edit-tax.js

     
    5454                }
    5555
    5656                editRow = $('#inline-edit').clone(true), rowData = $('#inline_'+id);
    57                 $('td', editRow).attr('colspan', $('.widefat:first thead th:visible').length);
     57                $( 'td', editRow ).attr( 'colspan', $(  'th:visible, #cb', '.widefat:first thead' ).length );
    5858
    5959                $(t.what+id).hide().after(editRow).after('<tr class="hidden"></tr>');
    6060