From 9b27de8c450d2c5610bab95b77372e64d643511a Mon Sep 17 00:00:00 2001 From: "Namhyeon, Go" Date: Thu, 19 Dec 2019 11:04:10 +0900 Subject: [PATCH] Update json.format.php --- helper/json.format.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helper/json.format.php b/helper/json.format.php index 4ec2843..a5a1c97 100644 --- a/helper/json.format.php +++ b/helper/json.format.php @@ -10,7 +10,7 @@ if(!check_function_exists("json_decode_ex")) { "NO_FUNCTION_JSON_DECODE" => "json_decode", "NO_FUNCTION_JSON_LAST_ERROR" => "json_last_error", ); - $error = check_invaild_function($invalid_fn); + $error = check_invalid_function($invalid_fn); if($error < 0) { $_result = array_key_equals("assoc", $options, true) ? @json_decode($data, true) : @json_decode($data);