WP_Themes_List_Table accesses $_pagination_args from the parent class. Switch $_pagination_args to protected in WP_List_Table.

See #30891.

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


git-svn-id: http://core.svn.wordpress.org/trunk@31148 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Scott Taylor 2015-01-12 16:26:21 +00:00
parent 4f6de09a5b
commit b51593763a
2 changed files with 2 additions and 3 deletions

View File

@ -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

View File

@ -4,7 +4,7 @@
*
* @global string $wp_version
*/
$wp_version = '4.2-alpha-31166';
$wp_version = '4.2-alpha-31167';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.