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
This commit is contained in:
Drew Jaynes 2015-04-05 15:03:29 +00:00
parent a91a919d13
commit 4b36885bbd
2 changed files with 6 additions and 4 deletions

View File

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

View File

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