in reply to Sending warnings from CGI::Session to browser
By the way,
sub foo { ... } [download]
is effectively
BEGIN { *foo = sub { ... }; } [download]
You can move the sub out of the BEGIN.