On Nov 25, 2007 11:43 AM, Adam Prime <[EMAIL PROTECTED]> wrote: > The rub here for me is that in apreq1 you could modify param just fine, > but that in apreq2 you cannot. None of the porting documents mention > this unfortunately.
The PORTING section of the Apache2::Request docs do say this. I think the larger issue here is that it's a conceptual mistake to try to modify the input parameters. They are just a record of what the client sent. When you want to clean or modify them in some way, you make your own copy and work on that. Otherwise, you lose the ability to know what was actually sent. - Perrin