Changeset 14675
- Timestamp:
- 05/15/2010 08:57:17 PM (15 years ago)
- Location:
- trunk/wp-admin/includes
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/includes/nav-menu.php
r14671 r14675 1005 1005 function wp_nav_menu_manage_columns() { 1006 1006 return array( 1007 ' title' => __('Show advanced menu properties'),1007 '_title' => __('Show advanced menu properties'), 1008 1008 'cb' => '<input type="checkbox" />', 1009 1009 'link-target' => __('Link Target'), -
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.