On Wed, 2005-03-16 at 08:47 +0530, Joshua N Pritikin wrote: > CGI::Simple doesn't work with mod_perl 1.999.20: > > $data = $self->{'.mod_perl'} ? Apache->request->args : > $ENV{'QUERY_STRING'} || $ENV{'REDIRECT_QUERY_STRING'} || ''; > > Apache->request->args returns an Apache::RequestRec instead of a native > perl data structure.
Really? It should still give you the query string. http://perl.apache.org/docs/2.0/api/Apache/RequestRec.html#C_args_ and possibly related... http://perl.apache.org/docs/2.0/user/porting/compat.html#C__r_E_gt_args__in_an_Array_Context - Perrin