Subject: | Cookies.pm v1.36 patch proposal |
When saving cookies Cookies.pm saves them case-sensitive (which doesn't make sense since domains aren't supposed to be case-sensitive).
Eg. a server refers to itself as www.a1.net _and_ www.A1.net (which makes logging in to that beast impossible with half the credentials saved under a1.net, the other half under A1.net).
51a52
> $domain = lc ($domain) if (defined($domain));
195a197
> $req_host = lc($req_host) if (defined($req_host));
285a288
> $domain = lc ($domain) if (defined($domain));