Make WordPress Core


Ignore:
Timestamp:
04/29/2013 01:10:50 AM (12 years ago)
Author:
SergeyBiryukov
Message:

Remove redundant echo calls from list tables. Don't mix string concatenation with direct output. see #24210.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/includes/class-wp-users-list-table.php

    r23563 r24123  
    210210
    211211            $style = ( ' class="alternate"' == $style ) ? '' : ' class="alternate"';
    212             echo "\n\t", $this->single_row( $user_object, $style, $role, isset( $post_counts ) ? $post_counts[ $userid ] : 0 );
     212            echo "\n\t" . $this->single_row( $user_object, $style, $role, isset( $post_counts ) ? $post_counts[ $userid ] : 0 );
    213213        }
    214214    }
Note: See TracChangeset for help on using the changeset viewer.