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