Skip Menu |

This queue is for tickets about the libwww-perl CPAN distribution.

Report information
The Basics
Id: 4530
Status: resolved
Priority: 0/
Queue: libwww-perl

People
Owner: Nobody in particular
Requestors: sendmespam [...] likeigiveafuck.com
Cc:
AdminCc:

Bug Information
Severity: Critical
Broken in:
  • 5.60
  • 5.50
  • 5.49
  • 5.10
  • 5.18
  • 5.22
  • 5.36
  • 5.43
  • 5.44
  • 5.45
  • 5.46
  • 5.47
  • 5.48
  • 5.51
  • 5.52
  • 5.53
  • 5.53_97
  • 5.61
  • 5.62
  • 5.63
  • 5.64
  • 5.65
  • 5.66
  • 5.67
  • 5.68
  • 5.69
  • 5.70
  • 5.71
  • 5.72
  • 5.73
  • 5.74
  • 5.75
  • 5.76
Fixed in: (no value)



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));