From 2b67add6dded7035def6a0a7176a9d1e1def77b7 Mon Sep 17 00:00:00 2001 From: Gary Pendergast Date: Wed, 26 Aug 2015 03:25:15 +0000 Subject: [PATCH] When `wp_json_encode()` calls `json_encode()`, the latter will generate warnings if the string contains non-UTF-8 characters. No-one likes warnings, so we need to do something about that. The good news is, the point of `wp_json_encode()` is to handle those non-UTF-8 characters. It'll totally just fix them up, no problem. Anyway, we can just ignore those warnings. Fixes #33524. git-svn-id: https://develop.svn.wordpress.org/trunk@33747 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/functions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wp-includes/functions.php b/src/wp-includes/functions.php index fd722195f9..006cb6cb7e 100644 --- a/src/wp-includes/functions.php +++ b/src/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