On Wed, 7 Jan 2009, Michael Ludwig wrote: > In 2.0, is there a way to access the current request object using one of > the classes in the following fashion? > > my $r = Apache2::RequestRec->current(); # INVALID! >
>From `man Apache2::RequestUtil`: # get the global request object (requires PerlOptions +GlobalRequest) $r = Apache2::RequestUtil->request; Is that what you want? Mark