From 4b36885bbd895a8ba034c3e93bdc10c4b78d841d Mon Sep 17 00:00:00 2001 From: Drew Jaynes Date: Sun, 5 Apr 2015 15:03:29 +0000 Subject: [PATCH] Cleanup DocBlock syntax, add a missing parameter description for `WP_Customize_Manager->set_post_value()`. See [31370]. See #31888. Built from https://develop.svn.wordpress.org/trunk@32031 git-svn-id: http://core.svn.wordpress.org/trunk@32010 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/class-wp-customize-manager.php | 8 +++++--- wp-includes/version.php | 2 +- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/wp-includes/class-wp-customize-manager.php b/wp-includes/class-wp-customize-manager.php index a61292732e..7f703d2ecc 100644 --- a/wp-includes/class-wp-customize-manager.php +++ b/wp-includes/class-wp-customize-manager.php @@ -118,6 +118,7 @@ final class WP_Customize_Manager { * * @since 3.4.0 * @since 4.2.0 Added `$action` param. + * @access public * * @param string|null $action Whether the supplied AJAX action is being run. * @return bool True if it's an AJAX request, false otherwise. @@ -478,12 +479,13 @@ final class WP_Customize_Manager { } /** - * Override a setting's (unsanitized) value as found in any incoming $_POST['customized'] + * Override a setting's (unsanitized) value as found in any incoming $_POST['customized']. * * @since 4.2.0 + * @access public * - * @param string $setting_id The ID for the WP_Customize_Setting instance. - * @param mixed $value + * @param string $setting_id ID for the WP_Customize_Setting instance. + * @param mixed $value Post value. */ public function set_post_value( $setting_id, $value ) { $this->unsanitized_post_values(); diff --git a/wp-includes/version.php b/wp-includes/version.php index d194d4ad2f..9da3272450 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.2-beta4-32030'; +$wp_version = '4.2-beta4-32031'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.