From 22470584fa4c5237b7fd4558d42f090060803771 Mon Sep 17 00:00:00 2001 From: Dominique Fournier Date: Thu, 5 Dec 2019 09:59:01 +0000 Subject: [PATCH] jwt : return (object) git-svn-id: https://svn.fournier38.fr/svn/ProgSVN/trunk@5788 bf3deb0d-5f1a-0410-827f-c0cc1f45334c --- jwt.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jwt.php b/jwt.php index 98e955f..0b47c37 100644 --- a/jwt.php +++ b/jwt.php @@ -291,7 +291,7 @@ class jwt private function jsonDecode ($input) // {{{ { - return json_decode ($input, true, 512, JSON_BIGINT_AS_STRING); + return json_decode ($input, false, 512, JSON_BIGINT_AS_STRING); } // }}} }