Changeset 14675 for trunk/wp-admin/includes/template.php
- Timestamp:
- 05/15/2010 08:57:17 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/includes/template.php
r14673 r14675 3246 3246 3247 3247 foreach ( $columns as $column => $title ) { 3248 // Can't hide these 3249 if ( ' cb' == $column || 'title' == $column || 'name' == $column || 'username' == $column || 'media' == $column || 'comment' == $column )3248 // Can't hide these or they are special 3249 if ( '_title' == $column || 'cb' == $column || 'title' == $column || 'name' == $column || 'username' == $column || 'media' == $column || 'comment' == $column ) 3250 3250 continue; 3251 3251 if ( empty($title) ) … … 3610 3610 <?php endif; 3611 3611 if ( ! empty($column_screens) ) : ?> 3612 <h5><?php echo ( isset( $column_screens[' title'] ) ? $column_screens['title'] : _x('Show on screen', 'Columns') ) ?></h5>3612 <h5><?php echo ( isset( $column_screens['_title'] ) ? $column_screens['_title'] : _x('Show on screen', 'Columns') ) ?></h5> 3613 3613 <div class="metabox-prefs"> 3614 3614 <?php manage_columns_prefs($screen); ?>
Note: See TracChangeset
for help on using the changeset viewer.