Ticket #16279: 16279.diff
File 16279.diff, 1.3 KB (added by , 14 years ago) |
---|
-
wp-admin/includes/class-wp-terms-list-table.php
164 164 165 165 if ( empty( $terms ) ) { 166 166 list( $columns, $hidden ) = $this->get_column_info(); 167 echo '<tr class="no-items"><td class="colspanchange" colspan="' . ( count( $columns ) - count( array_filter( $hidden ) )) . '">';167 echo '<tr class="no-items"><td class="colspanchange" colspan="' . $this->get_column_count() . '">'; 168 168 $this->no_items(); 169 169 echo '</td></tr>'; 170 170 } else { -
wp-admin/includes/class-wp-list-table.php
772 772 $this->display_rows(); 773 773 } else { 774 774 list( $columns, $hidden ) = $this->get_column_info(); 775 echo '<tr class="no-items"><td class="colspanchange" colspan="' . ( count( $columns ) - count( array_filter( $hidden ) )) . '">';775 echo '<tr class="no-items"><td class="colspanchange" colspan="' . $this->get_column_count() . '">'; 776 776 $this->no_items(); 777 777 echo '</td></tr>'; 778 778 }