Update Kirby to 3.7.4

This commit is contained in:
Lukas Bestle
2022-08-23 21:36:13 +02:00
parent 435b9f4541
commit d89a0a647c
674 changed files with 212 additions and 61 deletions

4
kirby/src/Http/Params.php Executable file → Normal file
View File

@@ -73,7 +73,7 @@ class Params extends Query
$paramValue = $paramParts[1] ?? null;
if ($paramKey !== null) {
$params[$paramKey] = $paramValue;
$params[rawurldecode($paramKey)] = $paramValue ? rawurldecode($paramValue) : null;
}
unset($path[$index]);
@@ -140,7 +140,7 @@ class Params extends Query
foreach ($this as $key => $value) {
if ($value !== null && $value !== '') {
$params[] = $key . $separator . $value;
$params[] = rawurlencode($key) . $separator . rawurlencode($value);
}
}