summaryrefslogtreecommitdiffstats
path: root/globals.pl
diff options
context:
space:
mode:
authorbbaetz%cs.mcgill.ca <>2001-11-17 16:57:25 +0100
committerbbaetz%cs.mcgill.ca <>2001-11-17 16:57:25 +0100
commit684e6deb0f1f87bd51f8fdab3b8df7d432fd12c9 (patch)
tree6a79b4cc770dfeacff49866169bfca1a46419834 /globals.pl
parentd8de908a804e696a52b386516c3b4aad122a6fe9 (diff)
downloadbugzilla-684e6deb0f1f87bd51f8fdab3b8df7d432fd12c9.tar.gz
bugzilla-684e6deb0f1f87bd51f8fdab3b8df7d432fd12c9.tar.xz
Bug 101560, pt 2. Perl 5.00503 gives a (bogus?) warning which 5.6 doesn't.
Quote manually rather than using qw to get arround this
Diffstat (limited to 'globals.pl')
-rw-r--r--globals.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/globals.pl b/globals.pl
index 0da5ec895..1654738e5 100644
--- a/globals.pl
+++ b/globals.pl
@@ -74,7 +74,7 @@ use Date::Parse; # For str2time().
use RelationSet;
# Some environment variables are not taint safe
-delete $ENV{qw(PATH IFS CDPATH ENV BASH_ENV)};
+delete @::ENV{'PATH', 'IFS', 'CDPATH', 'ENV', 'BASH_ENV'};
# Contains the version string for the current running Bugzilla.
$::param{'version'} = '2.15';