diff --git wp-admin/includes/class-wp-list-table.php wp-admin/includes/class-wp-list-table.php
index 13a688c..15fc749 100644
|
|
class WP_List_Table { |
771 | 771 | if ( $this->has_items() ) { |
772 | 772 | $this->display_rows(); |
773 | 773 | } else { |
774 | | echo '<tr class="no-items"><td colspan="2">'; |
| 774 | list( $columns, $hidden, $sortable ) = $this->get_column_info(); |
| 775 | echo '<tr class="no-items"><td class="colspanchange" colspan="' . count( $columns ) . '">'; |
775 | 776 | $this->no_items(); |
776 | 777 | echo '</td></tr>'; |
777 | 778 | } |
diff --git wp-admin/includes/class-wp-terms-list-table.php wp-admin/includes/class-wp-terms-list-table.php
index b17e96d..74e86c9 100644
|
|
class WP_Terms_List_Table extends WP_List_Table { |
163 | 163 | } |
164 | 164 | |
165 | 165 | if ( empty( $terms ) ) { |
166 | | echo '<tr class="no-items"><td colspan="2">'; |
| 166 | list( $columns, $hidden, $sortable ) = $this->get_column_info(); |
| 167 | echo '<tr class="no-items"><td class="colspanchange" colspan="' . count( $columns ) . '">'; |
167 | 168 | $this->no_items(); |
168 | 169 | echo '</td></tr>'; |
169 | 170 | } else { |