From 3495fa40df58d40eb63b3ba79fbe4367a4eea9ae Mon Sep 17 00:00:00 2001 From: Gary Pendergast Date: Tue, 28 Oct 2014 18:54:18 +0000 Subject: [PATCH] Fix a PHPDoc typo for `wp_json_encode()`. Props JustinSainton. See #28786. Built from https://develop.svn.wordpress.org/trunk@30058 git-svn-id: http://core.svn.wordpress.org/trunk@30058 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/functions.php | 2 +- wp-includes/version.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-includes/functions.php b/wp-includes/functions.php index 7df760fdc6..458b47ea9b 100644 --- a/wp-includes/functions.php +++ b/wp-includes/functions.php @@ -2619,7 +2619,7 @@ function _scalar_wp_die_handler( $message = '' ) { * * @param mixed $data Variable (usually an array or object) to encode as JSON * @param int $options Options to be passed to json_encode(). Default 0. - * @param int $depth Maximum depth to walk through $data. Must be greater than 0, default 512.t + * @param int $depth Maximum depth to walk through $data. Must be greater than 0, default 512. * * @return bool|string The JSON encoded string, or false if it cannot be encoded */ diff --git a/wp-includes/version.php b/wp-includes/version.php index d96c438ea6..91c19114e7 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.1-alpha-30057'; +$wp_version = '4.1-alpha-30058'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.