Make WordPress Core


Ignore:
Timestamp:
01/26/2014 08:27:21 PM (11 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/class-wp-comments-list-table.php

    r26961 r27036  
    317317
    318318?>
    319 <table class="<?php echo implode( ' ', $this->get_table_classes() ); ?>" cellspacing="0">
     319<table class="<?php echo implode( ' ', $this->get_table_classes() ); ?>">
    320320    <thead>
    321321    <tr>
     
    603603        wp_nonce_field( "fetch-list-" . get_class( $this ), '_ajax_fetch_list_nonce' );
    604604?>
    605 <table class="<?php echo implode( ' ', $this->get_table_classes() ); ?>" cellspacing="0" style="display:none;">
     605<table class="<?php echo implode( ' ', $this->get_table_classes() ); ?>" style="display:none;">
    606606    <tbody id="the-comment-list"<?php if ( $singular ) echo " data-wp-lists='list:$singular'"; ?>>
    607607        <?php if ( ! $output_empty ) $this->display_rows_or_placeholder(); ?>
Note: See TracChangeset for help on using the changeset viewer.