From 06608b167bd34b6849bbea42825ad6c0a07c8ae4 Mon Sep 17 00:00:00 2001 From: Drew Jaynes Date: Mon, 13 Jul 2015 20:31:50 +0000 Subject: [PATCH] Fix parameter descriptions for two methods added to `WP_Customize_Manager` in 4.3. See [32658]. See #32891. git-svn-id: https://develop.svn.wordpress.org/trunk@33217 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/class-wp-customize-manager.php | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/src/wp-includes/class-wp-customize-manager.php b/src/wp-includes/class-wp-customize-manager.php index dd33ba6531..a744bb3fc8 100644 --- a/src/wp-includes/class-wp-customize-manager.php +++ b/src/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;