From: Brian A. <br...@ta...> - 2000-12-18 22:41:29
|
Jason Richey wrote: > When I try to initialize my table-map, I used this code: > 25 my $r = Apache->request; Check to see if $r is really set. Apache->request() is guarenteed in a handler because Apache::Registry sets it. You will notice that in the top of Slash::Apache::User::handler() that I set it. If I didn't then calls that rely on $r will find it unet. -Brian |