Make WordPress Core


Ignore:
Timestamp:
01/24/2014 07:05:15 PM (11 years ago)
Author:
azaozz
Message:

Remove all "valign" attributes from tables in wp-admin, props MikeHansenMe, Marventus. Fixes #22712.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/network/settings.php

    r26641 r27029  
    9090        <h3><?php _e( 'Operational Settings' ); ?></h3>
    9191        <table class="form-table">
    92             <tr valign="top">
     92            <tr>
    9393                <th scope="row"><label for="site_name"><?php _e( 'Network Title' ) ?></label></th>
    9494                <td>
     
    9797            </tr>
    9898
    99             <tr valign="top">
     99            <tr>
    100100                <th scope="row"><label for="admin_email"><?php _e( 'Network Admin Email' ) ?></label></th>
    101101                <td>
     
    109109        <h3><?php _e( 'Registration Settings' ); ?></h3>
    110110        <table class="form-table">
    111             <tr valign="top">
     111            <tr>
    112112                <th scope="row"><?php _e( 'Allow new registrations' ) ?></th>
    113113                <?php
     
    129129            </tr>
    130130
    131             <tr valign="top">
     131            <tr>
    132132                <th scope="row"><?php _e( 'Registration notification' ) ?></th>
    133133                <?php
     
    140140            </tr>
    141141
    142             <tr valign="top" id="addnewusers">
     142            <tr id="addnewusers">
    143143                <th scope="row"><?php _e( 'Add New Users' ) ?></th>
    144144                <td>
     
    147147            </tr>
    148148
    149             <tr valign="top">
     149            <tr>
    150150                <th scope="row"><label for="illegal_names"><?php _e( 'Banned Names' ) ?></label></th>
    151151                <td>
     
    157157            </tr>
    158158
    159             <tr valign="top">
     159            <tr>
    160160                <th scope="row"><label for="limited_email_domains"><?php _e( 'Limited Email Registrations' ) ?></label></th>
    161161                <td>
     
    170170            </tr>
    171171
    172             <tr valign="top">
     172            <tr>
    173173                <th scope="row"><label for="banned_email_domains"><?php _e('Banned Email Domains') ?></label></th>
    174174                <td>
     
    185185        <table class="form-table">
    186186
    187             <tr valign="top">
     187            <tr>
    188188                <th scope="row"><label for="welcome_email"><?php _e( 'Welcome Email' ) ?></label></th>
    189189                <td>
     
    195195                </td>
    196196            </tr>
    197             <tr valign="top">
     197            <tr>
    198198                <th scope="row"><label for="welcome_user_email"><?php _e( 'Welcome User Email' ) ?></label></th>
    199199                <td>
     
    205205                </td>
    206206            </tr>
    207             <tr valign="top">
     207            <tr>
    208208                <th scope="row"><label for="first_post"><?php _e( 'First Post' ) ?></label></th>
    209209                <td>
     
    215215                </td>
    216216            </tr>
    217             <tr valign="top">
     217            <tr>
    218218                <th scope="row"><label for="first_page"><?php _e( 'First Page' ) ?></label></th>
    219219                <td>
     
    225225                </td>
    226226            </tr>
    227             <tr valign="top">
     227            <tr>
    228228                <th scope="row"><label for="first_comment"><?php _e( 'First Comment' ) ?></label></th>
    229229                <td>
     
    235235                </td>
    236236            </tr>
    237             <tr valign="top">
     237            <tr>
    238238                <th scope="row"><label for="first_comment_author"><?php _e( 'First Comment Author' ) ?></label></th>
    239239                <td>
     
    244244                </td>
    245245            </tr>
    246             <tr valign="top">
     246            <tr>
    247247                <th scope="row"><label for="first_comment_url"><?php _e( 'First Comment URL' ) ?></label></th>
    248248                <td>
     
    256256        <h3><?php _e( 'Upload Settings' ); ?></h3>
    257257        <table class="form-table">
    258             <tr valign="top">
     258            <tr>
    259259                <th scope="row"><?php _e( 'Site upload space' ) ?></th>
    260260                <td>
     
    263263            </tr>
    264264
    265             <tr valign="top">
     265            <tr>
    266266                <th scope="row"><label for="upload_filetypes"><?php _e( 'Upload file types' ) ?></label></th>
    267267                <td><input name="upload_filetypes" type="text" id="upload_filetypes" class="large-text" value="<?php echo esc_attr( get_site_option('upload_filetypes', 'jpg jpeg png gif') ) ?>" size="45" /></td>
    268268            </tr>
    269269
    270             <tr valign="top">
     270            <tr>
    271271                <th scope="row"><label for="fileupload_maxk"><?php _e( 'Max upload file size' ) ?></label></th>
    272272                <td><?php printf( _x( '%s KB', 'File size in kilobytes' ), '<input name="fileupload_maxk" type="number" min="0" style="width: 100px" id="fileupload_maxk" value="' . esc_attr( get_site_option( 'fileupload_maxk', 300 ) ) . '" />' ); ?></td>
     
    281281        <h3><?php _e( 'Language Settings' ); ?></h3>
    282282        <table class="form-table">
    283                 <tr valign="top">
     283                <tr>
    284284                    <th><label for="WPLANG"><?php _e( 'Default Language' ); ?></label></th>
    285285                    <td>
     
    296296        <h3><?php _e( 'Menu Settings' ); ?></h3>
    297297        <table id="menu" class="form-table">
    298             <tr valign="top">
     298            <tr>
    299299                <th scope="row"><?php _e( 'Enable administration menus' ); ?></th>
    300300                <td>
Note: See TracChangeset for help on using the changeset viewer.