diff --git a/src/Util/HTTPInputData.php b/src/Util/HTTPInputData.php index 8886b61e4..7c90df5e1 100644 --- a/src/Util/HTTPInputData.php +++ b/src/Util/HTTPInputData.php @@ -60,7 +60,7 @@ class HTTPInputData // can be handled by built in PHP functionality $content = static::getPhpInputContent(); - $variables = json_decode($content); + $variables = json_decode($content, true); if (empty($variables)) { parse_str($content, $variables);