diff --git a/wp-admin/includes/class-wp-terms-list-table.php b/wp-admin/includes/class-wp-terms-list-table.php
index 3854a36..fb52e21 100644
a
|
b
|
class WP_Terms_List_Table extends WP_List_Table { |
291 | 291 | return $count; |
292 | 292 | |
293 | 293 | if ( $tax->query_var ) { |
294 | | $args = array( $tax->query_var => $tag->slug ); |
295 | | } else { |
296 | 294 | $args = array( 'taxonomy' => $tax->name, 'term' => $tag->slug ); |
| 295 | } else { |
| 296 | $args = array( 'taxonomy' => $tax->name, 'term' => $tag->slug ); |
297 | 297 | } |
298 | 298 | |
299 | 299 | if ( 'post' != $this->screen->post_type ) |