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/my-sites.php

    r26518 r27029  
    9292    $settings_html = apply_filters( 'myblogs_options', '', 'global' );
    9393    if ( $settings_html != '' ) {
    94         echo '<tr><td valign="top"><h3>' . __( 'Global Settings' ) . '</h3></td><td>';
     94        echo '<tr><td><h3>' . __( 'Global Settings' ) . '</h3></td><td>';
    9595        echo $settings_html;
    9696        echo '</td></tr>';
     
    117117        foreach ( $row as $user_blog ) {
    118118            $s = $i == 3 ? '' : 'border-right: 1px solid #ccc;';
    119             echo "<td valign='top' style='$s'>";
     119            echo "<td style='$s'>";
    120120            echo "<h3>{$user_blog->blogname}</h3>";
    121121            /**
Note: See TracChangeset for help on using the changeset viewer.