diff --git wp-admin/includes/class-wp-media-list-table.php wp-admin/includes/class-wp-media-list-table.php
index 08d9922..3e0f41c 100644
|
|
class WP_Media_List_Table extends WP_List_Table { |
123 | 123 | } |
124 | 124 | $type_links['detached'] = '<option value="detached"' . ( $this->detached ? ' selected="selected"' : '' ) . '>' . __( 'Unattached' ) . '</option>'; |
125 | 125 | |
126 | | if ( $this->is_trash ) { |
| 126 | if ( $this->is_trash || ( defined( 'MEDIA_TRASH') && MEDIA_TRASH ) ) { |
127 | 127 | $type_links['trash'] = sprintf( |
128 | 128 | '<option value="trash"%s>%s</option>', |
129 | 129 | selected( 'trash' === $filter, true, false ), |