diff --git a/wp-includes/functions.php b/wp-includes/functions.php index 48de7e20e1..5b3b1241a9 100644 --- a/wp-includes/functions.php +++ b/wp-includes/functions.php @@ -3403,9 +3403,10 @@ function smilies_init() { * to be merged into another array. * * @since 2.2.0 + * @since 2.3.0 `$args` can now also be an object. * - * @param string|array $args Value to merge with $defaults - * @param array $defaults Optional. Array that serves as the defaults. Default empty. + * @param string|array|object $args Value to merge with $defaults. + * @param array $defaults Optional. Array that serves as the defaults. Default empty. * @return array Merged user defined values with defaults. */ function wp_parse_args( $args, $defaults = '' ) { diff --git a/wp-includes/version.php b/wp-includes/version.php index 528cd6884c..2a048eea7a 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.7-alpha-38669'; +$wp_version = '4.7-alpha-38670'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.