- Timestamp:
- 05/01/2018 10:03:18 PM (8 years ago)
- Location:
- branches/4.9
- Files:
-
- 2 edited
-
. (modified) (1 prop)
-
src/wp-admin/includes/class-wp-media-list-table.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/4.9
- Property svn:mergeinfo changed
/trunk merged: 43056,43062-43063
- Property svn:mergeinfo changed
-
branches/4.9/src/wp-admin/includes/class-wp-media-list-table.php
r41161 r43064 120 120 ); 121 121 } 122 122 123 $type_links['detached'] = '<option value="detached"' . ( $this->detached ? ' selected="selected"' : '' ) . '>' . __( 'Unattached' ) . '</option>'; 124 125 $type_links['mine'] = sprintf( 126 '<option value="mine"%s>%s</option>', 127 selected( 'mine' === $filter, true, false ), 128 _x( 'Mine', 'media items' ) 129 ); 123 130 124 131 if ( $this->is_trash || ( defined( 'MEDIA_TRASH') && MEDIA_TRASH ) ) { … … 129 136 ); 130 137 } 138 131 139 return $type_links; 132 140 }
Note: See TracChangeset
for help on using the changeset viewer.