Changeset 34128
- Timestamp:
- 09/14/2015 08:28:29 PM (9 years ago)
- Location:
- trunk/src/wp-admin/includes
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-wp-list-table.php
r34101 r34128 889 889 } 890 890 891 public function get_primary_column() { 892 return $this->get_primary_column_name(); 893 } 894 891 895 /** 892 896 * Gets the name of the primary column. … … 897 901 * @return string The name of the primary column. 898 902 */ 899 p ublicfunction get_primary_column_name() {903 protected function get_primary_column_name() { 900 904 $columns = $this->get_columns(); 901 905 $default = $this->get_default_primary_column_name(); -
trunk/src/wp-admin/includes/class-wp-ms-themes-list-table.php
r34101 r34128 253 253 * @return string Unalterable name of the primary column name, in this case, 'name'. 254 254 */ 255 p ublicfunction get_primary_column_name() {255 protected function get_primary_column_name() { 256 256 return 'name'; 257 257 } -
trunk/src/wp-admin/includes/class-wp-plugins-list-table.php
r34101 r34128 725 725 * @return string Unalterable name for the primary column, in this case, 'name'. 726 726 */ 727 p ublicfunction get_primary_column_name() {727 protected function get_primary_column_name() { 728 728 return 'name'; 729 729 }
Note: See TracChangeset
for help on using the changeset viewer.