Make WordPress Core

Changeset 27036


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.

Location:
trunk/src/wp-admin
Files:
10 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/css/wp-admin.css

    r27020 r27036  
    43224322#post-status-info {
    43234323    width: 100%;
     4324    border-spacing: 0;
    43244325}
    43254326
     
    54415442table.links-table {
    54425443    width: 100%;
     5444    border-spacing: 0;
    54435445}
    54445446
  • trunk/src/wp-admin/edit-form-advanced.php

    r26995 r27036  
    488488    ),
    489489) ); ?>
    490 <table id="post-status-info" cellspacing="0"><tbody><tr>
     490<table id="post-status-info"><tbody><tr>
    491491    <td id="wp-word-count"><?php printf( __( 'Word count: %s' ), '<span class="word-count">0</span>' ); ?></td>
    492492    <td class="autosave-info">
  • trunk/src/wp-admin/import.php

    r26518 r27036  
    7777    uasort($importers, create_function('$a, $b', 'return strnatcasecmp($a[0], $b[0]);'));
    7878?>
    79 <table class="widefat importers" cellspacing="0">
     79<table class="widefat importers">
    8080
    8181<?php
  • 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)' );
  • 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(); ?>
  • trunk/src/wp-admin/includes/class-wp-list-table.php

    r26401 r27036  
    774774
    775775?>
    776 <table class="wp-list-table <?php echo implode( ' ', $this->get_table_classes() ); ?>" cellspacing="0">
     776<table class="wp-list-table <?php echo implode( ' ', $this->get_table_classes() ); ?>">
    777777    <thead>
    778778    <tr>
  • trunk/src/wp-admin/includes/media.php

    r27029 r27036  
    21402140<?php wp_nonce_field('media-form'); ?>
    21412141<?php //media_upload_form( $errors ); ?>
    2142 <table class="widefat" cellspacing="0">
     2142<table class="widefat">
    21432143<thead><tr>
    21442144<th><?php _e('Media'); ?></th>
  • trunk/src/wp-admin/includes/meta-boxes.php

    r26918 r27036  
    901901function link_xfn_meta_box($link) {
    902902?>
    903 <table class="links-table" cellspacing="0">
     903<table class="links-table">
    904904    <tr>
    905905        <th scope="row"><label for="link_rel"><?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('rel:') ?></label></th>
  • trunk/src/wp-admin/nav-menus.php

    r26634 r27036  
    551551    <div id="menu-locations-wrap">
    552552        <form method="post" action="<?php echo esc_url( add_query_arg( array( 'action' => 'locations' ), admin_url( 'nav-menus.php' ) ) ); ?>">
    553             <table class="widefat fixed" cellspacing="0" id="menu-locations-table">
     553            <table class="widefat fixed" id="menu-locations-table">
    554554                <thead>
    555555                <tr>
  • trunk/src/wp-admin/update-core.php

    r26894 r27036  
    221221<?php wp_nonce_field('upgrade-core'); ?>
    222222<p><input id="upgrade-plugins" class="button" type="submit" value="<?php esc_attr_e('Update Plugins'); ?>" name="upgrade" /></p>
    223 <table class="widefat" cellspacing="0" id="update-plugins-table">
     223<table class="widefat" id="update-plugins-table">
    224224    <thead>
    225225    <tr>
     
    299299<?php wp_nonce_field('upgrade-core'); ?>
    300300<p><input id="upgrade-themes" class="button" type="submit" value="<?php esc_attr_e('Update Themes'); ?>" name="upgrade" /></p>
    301 <table class="widefat" cellspacing="0" id="update-themes-table">
     301<table class="widefat" id="update-themes-table">
    302302    <thead>
    303303    <tr>
Note: See TracChangeset for help on using the changeset viewer.