diff --git a/wp-includes/functions.php b/wp-includes/functions.php index fd722195f9..006cb6cb7e 100644 --- a/wp-includes/functions.php +++ b/wp-includes/functions.php @@ -2677,7 +2677,7 @@ function wp_json_encode( $data, $options = 0, $depth = 512 ) { $args = array( $data ); } - $json = call_user_func_array( 'json_encode', $args ); + $json = @call_user_func_array( 'json_encode', $args ); // If json_encode() was successful, no need to do more sanity checking. // ... unless we're in an old version of PHP, and json_encode() returned diff --git a/wp-includes/version.php b/wp-includes/version.php index 89ec4d32ab..99ffa43978 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.4-alpha-33746'; +$wp_version = '4.4-alpha-33747'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.