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-comments-list-table.php

    r31161 r31513  
    337337    </thead>
    338338
     339    <tbody id="the-comment-list" data-wp-lists="list:comment">
     340        <?php $this->display_rows_or_placeholder(); ?>
     341    </tbody>
     342
     343    <tbody id="the-extra-comment-list" data-wp-lists="list:comment" style="display: none;">
     344        <?php $this->items = $this->extra_items; $this->display_rows(); ?>
     345    </tbody>
     346
    339347    <tfoot>
    340348    <tr>
     
    343351    </tfoot>
    344352
    345     <tbody id="the-comment-list" data-wp-lists="list:comment">
    346         <?php $this->display_rows_or_placeholder(); ?>
    347     </tbody>
    348 
    349     <tbody id="the-extra-comment-list" data-wp-lists="list:comment" style="display: none;">
    350         <?php $this->items = $this->extra_items; $this->display_rows(); ?>
    351     </tbody>
    352353</table>
    353354<?php
Note: See TracChangeset for help on using the changeset viewer.