diff --git src/wp-admin/includes/class-wp-list-table.php src/wp-admin/includes/class-wp-list-table.php
index bf642ac..9fc20fe 100644
|
|
class WP_List_Table { |
1175 | 1175 | if ( 'top' === $which ) { |
1176 | 1176 | wp_nonce_field( 'bulk-' . $this->_args['plural'] ); |
1177 | 1177 | } |
1178 | | ?> |
1179 | | <div class="tablenav <?php echo esc_attr( $which ); ?>"> |
1180 | 1178 | |
1181 | | <?php if ( $this->has_items() ): ?> |
1182 | | <div class="alignleft actions bulkactions"> |
1183 | | <?php $this->bulk_actions( $which ); ?> |
1184 | | </div> |
1185 | | <?php endif; |
1186 | | $this->extra_tablenav( $which ); |
1187 | | $this->pagination( $which ); |
1188 | | ?> |
1189 | | |
1190 | | <br class="clear" /> |
1191 | | </div> |
1192 | | <?php |
| 1179 | if ( $this->has_items() ): ?> |
| 1180 | <div class="tablenav <?php echo esc_attr( $which ); ?>"> |
| 1181 | <div class="alignleft actions bulkactions"> |
| 1182 | <?php $this->bulk_actions( $which ); ?> |
| 1183 | </div> |
| 1184 | <?php $this->extra_tablenav( $which ); |
| 1185 | $this->pagination( $which ); ?> |
| 1186 | <br class="clear"/> |
| 1187 | </div> |
| 1188 | <?php |
| 1189 | endif; |
1193 | 1190 | } |
1194 | 1191 | |
1195 | 1192 | /** |