From b51593763a0ee7717bca5a75e646b1c02858381d Mon Sep 17 00:00:00 2001 From: Scott Taylor Date: Mon, 12 Jan 2015 16:26:21 +0000 Subject: [PATCH] `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 --- wp-admin/includes/class-wp-list-table.php | 3 +-- wp-includes/version.php | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/wp-admin/includes/class-wp-list-table.php b/wp-admin/includes/class-wp-list-table.php index 05b94c5455..6245f157f9 100644 --- a/wp-admin/includes/class-wp-list-table.php +++ b/wp-admin/includes/class-wp-list-table.php @@ -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 diff --git a/wp-includes/version.php b/wp-includes/version.php index 57a5d062e3..6f51d6e366 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -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.