diff --git a/VERSION b/VERSION index 3ee3c70..471f7b2 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.2503.202335 +0.2503.202342 diff --git a/src/Http/HttpUri.php b/src/Http/HttpUri.php index 07c2527..d3b36e9 100644 --- a/src/Http/HttpUri.php +++ b/src/Http/HttpUri.php @@ -272,10 +272,10 @@ class HttpUri implements UriInterface, Stringable { $paramParts = explode('&', $query); foreach($paramParts as $paramPart) { $parts = explode('=', $paramPart, 2); - $name = ctype_print($parts[0]) ? urldecode($parts[0]) : $parts[0]; + $name = urldecode($parts[0]); if(!array_key_exists($name, $params)) $params[$name] = []; - $params[$name][] = count($parts) > 1 ? (ctype_print($parts[1]) ? urldecode($parts[1]) : $parts[1]) : null; + $params[$name][] = count($parts) > 1 ? urldecode($parts[1]) : null; } }