Skip Menu |

This queue is for tickets about the CGI-Session CPAN distribution.

Report information
The Basics
Id: 2226
Status: resolved
Priority: 0/
Queue: CGI-Session

People
Owner: sherzodr [...] cpan.org
Requestors: chris [...] clotho.com
Cc:
AdminCc:

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



Subject: ctime() is broken
In 3.92, the ctime() method is broken. In the code below, "defined @_" should be simply "@_". Also, the error message refers to "ATIME" which is very confusing. Source of the ctime() method, as of 3.92: # ctime() - returns session creation time sub ctime { my $self = shift; if ( defined @_ ) { confess "_SESSION_ATIME - read-only value"; } return $self->{_DATA}->{_SESSION_CTIME}; }
Fixed in CGI-Session-3.93. Just uploaded.