Menu

#82 Session.pm bug

Web_Product
open
nobody
bug (54)
5
2001-09-18
2001-09-18
Anonymous
No

There is a bug in _build_session_info in Session.pm
version 3.1.3

line
$session_info .= "SESSION_HASH_$key=" .
$self->{SESSION_HASH}{$key} || '' . "\n";

should be

$session_info .= "SESSION_HASH_$key=" .
($self->{SESSION_HASH}{$key} || '' ) . "\n";

otherwise, there are no newlines between SESSION_HASH_...
entries

Discussion


Log in to post a comment.