Ticket #25408: 25408.18.diff
| File 25408.18.diff, 1.5 KB (added by , 11 years ago) |
|---|
-
src/wp-admin/includes/class-wp-ms-themes-list-table.php
245 245 } 246 246 247 247 /** 248 * Get the name of the defaultprimary column.248 * Get the name of the primary column. 249 249 * 250 250 * @since 4.3.0 251 251 * @access protected 252 252 * 253 * @return string Name of the defaultprimary column name, in this case, 'name'.253 * @return string Unalterable name of the primary column name, in this case, 'name'. 254 254 */ 255 protected function get_ default_primary_column_name() {255 protected function get_primary_column_name() { 256 256 return 'name'; 257 257 } 258 258 -
src/wp-admin/includes/class-wp-plugins-list-table.php
719 719 } 720 720 721 721 /** 722 * Get the name of defaultprimary column for this specific list table.722 * Get the name of primary column for this specific list table. 723 723 * 724 724 * @since 4.3.0 725 725 * @access protected 726 726 * 727 * @return string Name for the defaultprimary column, in this case, 'plugin'.727 * @return string Unalterable name for the primary column, in this case, 'plugin'. 728 728 */ 729 protected function get_ default_primary_column_name() {729 protected function get_primary_column_name() { 730 730 return 'plugin'; 731 731 } 732 732 }