in reply to Basic question
I wouldn't be surprised if my $Report is a package lexical, which only gets initialized once. And from then on keeps its value between requests.
I haven't used Apache::Registry myself ever, but I think you can solve this by putting your code in a block, like this:
{ my $Report = ""; ... yada yada yada print STDERR....; }
This will ensure that $Report will get initialized properly each request.
This is untested, so YMMV.
Liz
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Basic question
by valdez (Monsignor) on Aug 20, 2003 at 10:06 UTC | |
by pcouderc (Monk) on Aug 20, 2003 at 10:43 UTC | |
|
Re^2: Basic question (BEGIN)
by tye (Sage) on Aug 20, 2003 at 15:40 UTC |