Make WordPress Core


Ignore:
Timestamp:
02/22/2015 09:47:30 PM (10 years ago)
Author:
azaozz
Message:

Improve table footer tab sequence by moving <tfoot> after <tbody>. Props afercia, rianrietveld, DrewAPicture. Fixes #30914.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/includes/class-wp-list-table.php

    r31438 r31513  
    940940    </thead>
    941941
    942     <tfoot>
    943     <tr>
    944         <?php $this->print_column_headers( false ); ?>
    945     </tr>
    946     </tfoot>
    947 
    948942    <tbody id="the-list"<?php
    949943        if ( $singular ) {
     
    952946        <?php $this->display_rows_or_placeholder(); ?>
    953947    </tbody>
     948
     949    <tfoot>
     950    <tr>
     951        <?php $this->print_column_headers( false ); ?>
     952    </tr>
     953    </tfoot>
     954
    954955</table>
    955956<?php
Note: See TracChangeset for help on using the changeset viewer.