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/includes/class-wp-ms-sites-list-table.php

    r26341 r27029  
    234234
    235235                    case 'id':?>
    236                         <th valign="top" scope="row">
     236                        <th scope="row">
    237237                            <?php echo $blog['blog_id'] ?>
    238238                        </th>
     
    307307
    308308                    case 'lastupdated':
    309                         echo "<td valign='top' class='$column_name column-$column_name'$style>";
     309                        echo "<td class='$column_name column-$column_name'$style>";
    310310                            if ( 'list' == $mode )
    311311                                $date = 'Y/m/d';
     
    317317                    break;
    318318                case 'registered':
    319                         echo "<td valign='top' class='$column_name column-$column_name'$style>";
     319                        echo "<td class='$column_name column-$column_name'$style>";
    320320                        if ( $blog['registered'] == '0000-00-00 00:00:00' )
    321321                            echo '&#x2014;';
     
    327327                    break;
    328328                case 'users':
    329                         echo "<td valign='top' class='$column_name column-$column_name'$style>";
     329                        echo "<td class='$column_name column-$column_name'$style>";
    330330                            $blogusers = get_users( array( 'blog_id' => $blog['blog_id'], 'number' => 6) );
    331331                            if ( is_array( $blogusers ) ) {
     
    351351                case 'plugins': ?>
    352352                    <?php if ( has_filter( 'wpmublogsaction' ) ) {
    353                     echo "<td valign='top' class='$column_name column-$column_name'$style>";
     353                    echo "<td class='$column_name column-$column_name'$style>";
    354354                        /**
    355355                         * Fires inside the auxiliary 'Actions' column of the Sites list table.
Note: See TracChangeset for help on using the changeset viewer.