in reply to Re: Re: Supporting a production environment
in thread Supporting a production environment
BEGIN { if ($ENV{PERL5LIB} and $ENV{PERL5LIB} =~ /^(.*)$/) { # Blindly untaint. Taintchecking is to protect from Web data; # the environment is under our control. eval "use lib '$_';" foreach (reverse split(/:/,$1)); } }
|
|---|