- NormalizeKey now includes dots '.' since they are automatically transformed in underscore

This commit is contained in:
Dave M. 2025-05-18 18:08:48 +00:00
parent 17a83db6c2
commit 4f4443eb1a

View File

@ -163,6 +163,6 @@ class Cookie {
protected function normalizeKey(string $key) : string
{
return str_replace([',', ';', ' ', '='], '_', $key);
return str_replace([',', ';', ' ', '=', '.'], '_', $key);
}
}