Scott R. Godin wrote:
[snip]
> So if I were to say, override it thusly:
>
> package CGI;
>
> sub STORE {
> my $self = shift;
> my $tag = shift;
> my $vals = shift;
> #my @vals = index($vals,"\0")!=-1 ? split("\0",$vals) : $vals;
> my @vals = @{$vals};
> $self->param(-name=>$tag,-value=>[EMAIL PROTECTED]);
> }
>
> It wouldn't affect the webserver's ability to insert params from the
> query, correct?
If I understand the question correctly, the answer is no, this method has no
effect on parsing the query parameters.
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
<http://learn.perl.org/> <http://learn.perl.org/first-response>