Changeset 31181 for trunk/src/wp-admin/includes/class-wp-list-table.php
- Timestamp:
- 01/14/2015 10:13:03 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-wp-list-table.php
r31167 r31181 954 954 */ 955 955 protected function get_table_classes() { 956 return array( 'widefat', 'fixed', $this->_args['plural'] );956 return array( 'widefat', 'fixed', 'striped', $this->_args['plural'] ); 957 957 } 958 958 … … 1029 1029 */ 1030 1030 public function single_row( $item ) { 1031 static $row_class = ''; 1032 $row_class = ( $row_class == '' ? ' class="alternate"' : '' ); 1033 1034 echo '<tr' . $row_class . '>'; 1031 echo '<tr>'; 1035 1032 $this->single_row_columns( $item ); 1036 1033 echo '</tr>';
Note: See TracChangeset
for help on using the changeset viewer.