From 77875a273e716835632e7c3651f7b27ddf874de2 Mon Sep 17 00:00:00 2001 From: Boone Gorges Date: Sun, 11 Jan 2015 01:56:22 +0000 Subject: [PATCH] `Walker::$has_children` should be public for backward compatibility. See [31137]. See #30891. Built from https://develop.svn.wordpress.org/trunk@31141 git-svn-id: http://core.svn.wordpress.org/trunk@31122 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/class-wp-walker.php | 3 +-- wp-includes/version.php | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/wp-includes/class-wp-walker.php b/wp-includes/class-wp-walker.php index cd099c758d..f1d7597892 100644 --- a/wp-includes/class-wp-walker.php +++ b/wp-includes/class-wp-walker.php @@ -43,10 +43,9 @@ class Walker { * To be used in start_el(). * * @since 4.0.0 - * @access protected * @var bool */ - protected $has_children; + public $has_children; /** * Starts the list before the elements are added. diff --git a/wp-includes/version.php b/wp-includes/version.php index 9c8495317f..34e3dbcdcc 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.2-alpha-31140'; +$wp_version = '4.2-alpha-31141'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.