diff --git a/wp-includes/class-wp-customize-section.php b/wp-includes/class-wp-customize-section.php index 9bb59382dd..d06c200fea 100644 --- a/wp-includes/class-wp-customize-section.php +++ b/wp-includes/class-wp-customize-section.php @@ -330,12 +330,20 @@ class WP_Customize_Section { */ class WP_Customize_Themes_Section extends WP_Customize_Section { + /** + * Customize section type. + * + * @since 4.2.0 + * @access public + * @var string + */ public $type = 'themes'; /** * Render the themes section, which behaves like a panel. * * @since 4.2.0 + * @access protected */ protected function render() { $classes = 'accordion-section control-section control-section-' . $this->type; diff --git a/wp-includes/version.php b/wp-includes/version.php index ce0912b72c..aa203de514 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.2-beta4-32032'; +$wp_version = '4.2-beta4-32033'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.