From 7f9a841d4ceeb5b6bb1648c702c2c753b1d75a51 Mon Sep 17 00:00:00 2001 From: "mkanat%bugzilla.org" <> Date: Fri, 14 Jul 2006 04:55:43 +0000 Subject: Bug 343338: Eliminate "my" variables from the root level of modules Patch By Max Kanat-Alexander r=LpSolit, a=myk --- Bugzilla/Config.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Bugzilla/Config.pm') diff --git a/Bugzilla/Config.pm b/Bugzilla/Config.pm index 57c60dbb0..464163d89 100644 --- a/Bugzilla/Config.pm +++ b/Bugzilla/Config.pm @@ -60,9 +60,9 @@ use vars qw(@param_list); # INITIALISATION CODE # Perl throws a warning if we use bz_locations() directly after do. -my $localconfig = bz_locations()->{'localconfig'}; +our $localconfig = bz_locations()->{'localconfig'}; do $localconfig; -my %params; +our %params; # Load in the param definitions sub _load_params { foreach my $module (param_panels()) { -- cgit v1.2.3-24-g4f1b