Skip Menu |

This queue is for tickets about the HTTP-Cookies CPAN distribution.

Report information
The Basics
Id: 76278
Status: resolved
Priority: 0/
Queue: HTTP-Cookies

People
Owner: Nobody in particular
Requestors: anat-mazurov [...] mail.ru
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: (no value)
Fixed in: (no value)



Subject: Bug in HTTP::Cookies::Netscape
Date: Tue, 03 Apr 2012 19:04:09 +0400
To: bug-HTTP-Cookies [...] rt.cpan.org
From: Anatoly Mazurov <anat-mazurov [...] mail.ru>
Hello! When saving cookies to file, HTTP::Cookies::Netscape will reject cookies with expiry date not set. Instead of "return if $now > $expires;" it should look like "return if $expires && $now > $expires;" Patch code for Netscape.pm version 6.00: 61c61 < return if $now > $expires; --- Show quoted text
> return if $expires && $now > $expires;
Thank you.