- NormalizeKey now includes dots '.' since they are automatically transformed in underscore
This commit is contained in:
parent
17a83db6c2
commit
4f4443eb1a
@ -163,6 +163,6 @@ class Cookie {
|
||||
|
||||
protected function normalizeKey(string $key) : string
|
||||
{
|
||||
return str_replace([',', ';', ' ', '='], '_', $key);
|
||||
return str_replace([',', ';', ' ', '=', '.'], '_', $key);
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user