Tue Apr 03 11:04:28 2012anat-mazurov [...] mail.ru - Ticket created
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.
Thu Mar 30 19:29:41 2017olaf [...] wundersolutions.com - Correspondence added