diff options
author | bbaetz%student.usyd.edu.au <> | 2002-11-22 08:36:13 +0000 |
---|---|---|
committer | bbaetz%student.usyd.edu.au <> | 2002-11-22 08:36:13 +0000 |
commit | 9973264f52fb44c882d54826df7280d0cff8eaa1 (patch) | |
tree | 2625187b226bbc7241466f14e542d7bbff0ca021 /globals.pl | |
parent | Bug 181182 - Reporting fix pack 2. Fixes bug 179198 (Don't print labels for p... (diff) | |
download | bugzilla-9973264f52fb44c882d54826df7280d0cff8eaa1.tar.gz bugzilla-9973264f52fb44c882d54826df7280d0cff8eaa1.tar.bz2 bugzilla-9973264f52fb44c882d54826df7280d0cff8eaa1.zip |
Bug 181613 - $::ENV not being cleared
r=gerv, a=justdave
Diffstat (limited to 'globals.pl')
-rw-r--r-- | globals.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/globals.pl b/globals.pl index 89919e5c0..7eef23115 100644 --- a/globals.pl +++ b/globals.pl @@ -81,7 +81,7 @@ use RelationSet; use File::Spec; # Some environment variables are not taint safe -#delete @::ENV{'PATH', 'IFS', 'CDPATH', 'ENV', 'BASH_ENV'}; +delete @::ENV{'PATH', 'IFS', 'CDPATH', 'ENV', 'BASH_ENV'}; # Cwd.pm in perl 5.6.1 gives a warning if $::ENV{'PATH'} isn't defined # Set this to '' so that we don't get warnings cluttering the logs on every |