[31210] broke Supportflow on dotorg, which declares these methods as protected. Switch to protected for the noop methods. The subclasses can make them more visible using public.

See #30799.

Built from https://develop.svn.wordpress.org/trunk@31211


git-svn-id: http://core.svn.wordpress.org/trunk@31192 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Scott Taylor
2015-01-16 18:37:24 +00:00
parent 3fb283db0a
commit cde4c83091
6 changed files with 13 additions and 10 deletions

View File

@@ -1033,10 +1033,10 @@ class WP_List_Table {
echo '</tr>';
}
public function column_default( $item, $column_name ) {}
protected function column_default( $item, $column_name ) {}
protected function column_cb( $item ) {}
public function column_cb( $item ) {}
/**
* Generates the columns for a single row of the table
*