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
This commit is contained in:
Drew Jaynes 2015-07-13 20:32:24 +00:00
parent eb5b64112b
commit 442f8fa753
2 changed files with 7 additions and 5 deletions

View File

@ -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;

View File

@ -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.