Make WordPress Core


Ignore:
Timestamp:
01/26/2014 08:27:21 PM (10 years ago)
Author:
azaozz
Message:

Remove table cellspacing attribute from the admin, part-props MattyRob, fixes #22086.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/includes/ajax-actions.php

    r26995 r27036  
    14201420        wp_die( __('No items found.') );
    14211421
    1422     $html = '<table class="widefat" cellspacing="0"><thead><tr><th class="found-radio"><br /></th><th>'.__('Title').'</th><th class="no-break">'.__('Type').'</th><th class="no-break">'.__('Date').'</th><th class="no-break">'.__('Status').'</th></tr></thead><tbody>';
     1422    $html = '<table class="widefat"><thead><tr><th class="found-radio"><br /></th><th>'.__('Title').'</th><th class="no-break">'.__('Type').'</th><th class="no-break">'.__('Date').'</th><th class="no-break">'.__('Status').'</th></tr></thead><tbody>';
    14231423    foreach ( $posts as $post ) {
    14241424        $title = trim( $post->post_title ) ? $post->post_title : __( '(no title)' );
Note: See TracChangeset for help on using the changeset viewer.