Rolling back.

This commit is contained in:
flash 2025-03-20 23:42:35 +00:00
parent c000efa8e5
commit 7521d0ee82
Signed by: flash
GPG key ID: 2C9C2C574D47FE3E
2 changed files with 3 additions and 3 deletions

View file

@ -1 +1 @@
0.2503.202335
0.2503.202342

View file

@ -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;
}
}