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.