You are viewing a plain text version of this content. The canonical link for it is here.
Posted to modperl@perl.apache.org by Doug MacEachern <do...@covalent.net> on 2000/06/01 21:46:15 UTC

RE: elusive, disappearing notes?

On Wed, 31 May 2000, Geoffrey Young wrote:

> I've seen this before and always thought to attribute it to mod_dir creating
> a new request to properly map / to /index.html
> 
> since any notes set are for the lifetime of the request only, the new
> request (representing /index.html) would/should have no notes...

right.  you should be able to always get the same notes table with
something like so:

my $notes = $r->main ? $r->main->notes : $r->notes;