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
This commit is contained in:
parent
c1b837b47f
commit
6a94d3e2e3
|
@ -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' );
|
||||
|
|
|
@ -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.
|
||||
|
|
Loading…
Reference in New Issue