`WP_Themes_List_Table` accesses `$_pagination_args` from the parent class. Switch `$_pagination_args` to `protected` in `WP_List_Table`.
See #30891. git-svn-id: https://develop.svn.wordpress.org/trunk@31167 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
47a74bb21f
commit
47ba5e6c2e
|
@ -33,9 +33,8 @@ class WP_List_Table {
|
|||
*
|
||||
* @since 3.1.0
|
||||
* @var array
|
||||
* @access private
|
||||
*/
|
||||
private $_pagination_args = array();
|
||||
protected $_pagination_args = array();
|
||||
|
||||
/**
|
||||
* The current screen
|
||||
|
|
Loading…
Reference in New Issue