Adam Prime <[EMAIL PROTECTED]> writes: > is it just $req->param that is a const, or are both args and body > const as well?
All tables, even including $req->jar.
> Is there an easy (ie one line) way to rip the entire contents of
> $req->param into a hash I can actually modify the contents of,
This should work (I think), assuming your params are single-valued:
my %param = %{$req->param};
--
Joe Schaefer
