Changeset 33266
- Timestamp:
- 07/14/2015 04:17:06 PM (9 years ago)
- Location:
- trunk/src/wp-admin/includes
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-wp-list-table.php
r33178 r33266 888 888 $default = $this->get_default_primary_column_name(); 889 889 890 // If the primary column doesn't exist fall back to the 891 // first non-checkbox column. 892 if ( ! isset( $columns[ $default ] ) ) { 893 $default = WP_List_Table::get_default_primary_column_name(); 894 } 895 890 896 /** 891 897 * Filter the name of the primary column for the current list table. -
trunk/src/wp-admin/includes/class-wp-posts-list-table.php
r33197 r33266 1070 1070 */ 1071 1071 protected function get_default_primary_column_name() { 1072 return ( 'title' );1072 return 'title'; 1073 1073 } 1074 1074
Note: See TracChangeset
for help on using the changeset viewer.