in reply to CGI Buffer module will not return params.
To add elements, you need to the members of the hash instead of setting the hash equal to a new list:
saying %out_params = (...); resets the hash to only the values within the list - (...).foreach my $p (@in_params) { $out_params{$p} = $self->{r}->param($p); }
Does this make sense?
|
|---|