in reply to Re^4: Subclassing Apache::Request?
in thread Subclassing Apache::Request?
The pnotes() values only last for the length of the current request and get cleaned up automatically at the end of it. I'm not quite sure what you were trying to do with your provate_variable call, so I can't suggest anything there.my $r = Apache->request(); # or grab it when passed to handler $r->pnotes( Login => 1 ); my $foo = $r->pnotes( 'foo' );
|
|---|