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.