http://qs1969.pair.com?node_id=203968


in reply to Re: Re: $TAINTED in latest CGI.pm v2.87
in thread $TAINTED in latest CGI.pm v2.87

how about

$ENV{REQUEST_METHOD} ||= '';

but it will replace a false value, such as the number 0. in perl6, that's better written as:

$ENV{REQUEST_METHOD} //= '';

which will only default undefined values

~Particle *accelerates*