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/update-core.php

    r31382 r31513  
    232232    </thead>
    233233
    234     <tfoot>
    235     <tr>
    236         <th scope="col" class="manage-column check-column"><input type="checkbox" id="plugins-select-all-2" /></th>
    237         <th scope="col" class="manage-column"><label for="plugins-select-all-2"><?php _e('Select All'); ?></label></th>
    238     </tr>
    239     </tfoot>
    240234    <tbody class="plugins">
    241235<?php
     
    283277?>
    284278    </tbody>
     279
     280    <tfoot>
     281    <tr>
     282        <th scope="col" class="manage-column check-column"><input type="checkbox" id="plugins-select-all-2" /></th>
     283        <th scope="col" class="manage-column"><label for="plugins-select-all-2"><?php _e( 'Select All' ); ?></label></th>
     284    </tr>
     285    </tfoot>
    285286</table>
    286287<p><input id="upgrade-plugins-2" class="button" type="submit" value="<?php esc_attr_e('Update Plugins'); ?>" name="upgrade" /></p>
     
    314315    </thead>
    315316
    316     <tfoot>
    317     <tr>
    318         <th scope="col" class="manage-column check-column"><input type="checkbox" id="themes-select-all-2" /></th>
    319         <th scope="col" class="manage-column"><label for="themes-select-all-2"><?php _e('Select All'); ?></label></th>
    320     </tr>
    321     </tfoot>
    322317    <tbody class="plugins">
    323318<?php
     
    331326?>
    332327    </tbody>
     328
     329    <tfoot>
     330    <tr>
     331        <th scope="col" class="manage-column check-column"><input type="checkbox" id="themes-select-all-2" /></th>
     332        <th scope="col" class="manage-column"><label for="themes-select-all-2"><?php _e( 'Select All' ); ?></label></th>
     333    </tr>
     334    </tfoot>
    333335</table>
    334336<p><input id="upgrade-themes-2" class="button" type="submit" value="<?php esc_attr_e('Update Themes'); ?>" name="upgrade" /></p>
Note: See TracChangeset for help on using the changeset viewer.