diff --git a/System/Core/JSON.php b/System/Core/JSON.php index 402b73c5..5a62c45a 100644 --- a/System/Core/JSON.php +++ b/System/Core/JSON.php @@ -30,7 +30,7 @@ class JSON return $data; } if (is_array($data)) { - return json_encode(ArrayAccess::toArray($data)); + return json_encode($data, JSON_UNESCAPED_UNICODE); } return $data; }