From 442f8fa7533c50380bd2a9afd837c5650379fd15 Mon Sep 17 00:00:00 2001 From: Drew Jaynes Date: Mon, 13 Jul 2015 20:32:24 +0000 Subject: [PATCH] Fix parameter descriptions for two methods added to `WP_Customize_Manager` in 4.3. See [32658]. See #32891. Built from https://develop.svn.wordpress.org/trunk@33217 git-svn-id: http://core.svn.wordpress.org/trunk@33189 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/class-wp-customize-manager.php | 10 ++++++---- wp-includes/version.php | 2 +- 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/wp-includes/class-wp-customize-manager.php b/wp-includes/class-wp-customize-manager.php index dd33ba6531..a744bb3fc8 100644 --- a/wp-includes/class-wp-customize-manager.php +++ b/wp-includes/class-wp-customize-manager.php @@ -1009,8 +1009,9 @@ final class WP_Customize_Manager { * @since 4.3.0 * @access public * - * @param string $panel Name of a custom panel which is a subclass of - * {@see WP_Customize_Panel}. + * @see WP_Customize_Panel + * + * @param string $panel Name of a custom panel which is a subclass of WP_Customize_Panel. */ public function register_panel_type( $panel ) { $this->registered_panel_types[] = $panel; @@ -1078,8 +1079,9 @@ final class WP_Customize_Manager { * @since 4.3.0 * @access public * - * @param string $section Name of a custom section which is a subclass of - * {@see WP_Customize_Section}. + * @see WP_Customize_Section + * + * @param string $section Name of a custom section which is a subclass of WP_Customize_Section. */ public function register_section_type( $section ) { $this->registered_section_types[] = $section; diff --git a/wp-includes/version.php b/wp-includes/version.php index f098caa7b3..85185cf0d9 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.3-beta2-33216'; +$wp_version = '4.3-beta2-33217'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.