Changeset 16368 for trunk/wp-admin/includes/class-wp-posts-list-table.php
- Timestamp:
- 11/14/2010 06:00:09 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/includes/class-wp-posts-list-table.php
r16337 r16368 704 704 } 705 705 706 list( $columns, $hidden ) = $this->get_column_info();707 708 $col_count = count( $columns ) - count( $hidden );709 706 $m = ( isset( $mode ) && 'excerpt' == $mode ) ? 'excerpt' : 'list'; 710 707 $can_publish = current_user_can( $post_type_object->cap->publish_posts ); … … 721 718 <tr id="<?php echo $bulk ? 'bulk-edit' : 'inline-edit'; ?>" class="inline-edit-row inline-edit-row-<?php echo "$hclass inline-edit-$screen->post_type "; 722 719 echo $bulk ? "bulk-edit-row bulk-edit-row-$hclass bulk-edit-$screen->post_type" : "quick-edit-row quick-edit-row-$hclass inline-edit-$screen->post_type"; 723 ?>" style="display: none"><td colspan="<?php echo $ col_count; ?>">720 ?>" style="display: none"><td colspan="<?php echo $this->get_column_count(); ?>" class="colspanchange"> 724 721 725 722 <fieldset class="inline-edit-col-left"><div class="inline-edit-col"> 726 723 <h4><?php echo $bulk ? __( 'Bulk Edit' ) : __( 'Quick Edit' ); ?></h4> 727 728 729 724 <?php 730 725 … … 977 972 978 973 <?php 974 list( $columns ) = $this->get_column_info(); 975 979 976 foreach ( $columns as $column_name => $column_display_name ) { 980 977 if ( isset( $core_columns[$column_name] ) )
Note: See TracChangeset
for help on using the changeset viewer.