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/options-media.php

    r26518 r27029  
    5050
    5151<table class="form-table">
    52 <tr valign="top">
     52<tr>
    5353<th scope="row"><?php _e('Thumbnail size') ?></th>
    5454<td>
     
    6262</tr>
    6363
    64 <tr valign="top">
     64<tr>
    6565<th scope="row"><?php _e('Medium size') ?></th>
    6666<td><fieldset><legend class="screen-reader-text"><span><?php _e('Medium size'); ?></span></legend>
     
    7272</tr>
    7373
    74 <tr valign="top">
     74<tr>
    7575<th scope="row"><?php _e('Large size') ?></th>
    7676<td><fieldset><legend class="screen-reader-text"><span><?php _e('Large size'); ?></span></legend>
     
    9999if ( get_option('upload_url_path') || ( get_option('upload_path') != 'wp-content/uploads' && get_option('upload_path') ) ) :
    100100?>
    101 <tr valign="top">
     101<tr>
    102102<th scope="row"><label for="upload_path"><?php _e('Store uploads in this folder'); ?></label></th>
    103103<td><input name="upload_path" type="text" id="upload_path" value="<?php echo esc_attr(get_option('upload_path')); ?>" class="regular-text code" />
     
    106106</tr>
    107107
    108 <tr valign="top">
     108<tr>
    109109<th scope="row"><label for="upload_url_path"><?php _e('Full URL path to files'); ?></label></th>
    110110<td><input name="upload_url_path" type="text" id="upload_url_path" value="<?php echo esc_attr( get_option('upload_url_path')); ?>" class="regular-text code" />
Note: See TracChangeset for help on using the changeset viewer.