From 6a94d3e2e3cde792ddd21591f49ba4ae2d2cdfbe Mon Sep 17 00:00:00 2001 From: Drew Jaynes Date: Sun, 7 Feb 2016 00:18:26 +0000 Subject: [PATCH] Docs: Use the correct parameter name in the DocBlock for `wp_kses_post_deep()`, introduced in [36429]. Props sebastianpisula. Fixes #35700. See #35316. Built from https://develop.svn.wordpress.org/trunk@36489 git-svn-id: http://core.svn.wordpress.org/trunk@36456 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/kses.php | 6 ++++-- wp-includes/version.php | 2 +- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/wp-includes/kses.php b/wp-includes/kses.php index 527c4cb10f..b16a128e22 100644 --- a/wp-includes/kses.php +++ b/wp-includes/kses.php @@ -1587,8 +1587,10 @@ function wp_kses_post( $data ) { * * @since 4.4.2 * - * @param mixed $value The array or string to filter. - * @return mixed $value The filtered content. + * @see map_deep() + * + * @param mixed $data The array, object, or scalar value to inspect. + * @return mixed The filtered content. */ function wp_kses_post_deep( $data ) { return map_deep( $data, 'wp_kses_post' ); diff --git a/wp-includes/version.php b/wp-includes/version.php index 28d9ddd4c8..8b821ee873 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.5-alpha-36488'; +$wp_version = '4.5-alpha-36489'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.