From 85f8adcafb46ad3210c9f6f32ddf0a04d0c6bbb0 Mon Sep 17 00:00:00 2001 From: "lpsolit%gmail.com" <> Date: Wed, 12 Oct 2005 22:15:06 +0000 Subject: Bug 312150: Some routines are not exported in Bugzilla/Config/Common.pm - Patch by Frédéric Buclin r=joel a=justdave MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- editparams.cgi | 2 ++ 1 file changed, 2 insertions(+) (limited to 'editparams.cgi') diff --git a/editparams.cgi b/editparams.cgi index 4b1db455b..9efd30f2c 100755 --- a/editparams.cgi +++ b/editparams.cgi @@ -27,6 +27,7 @@ use lib "."; use Bugzilla::Constants; use Bugzilla::Config qw(:DEFAULT :admin :params $datadir); +use Bugzilla::Config::Common; require "globals.pl"; use vars qw($vars @parampanels); @@ -51,6 +52,7 @@ my $current_module; my @panels = (); foreach my $panel (@parampanels) { next if ($panel eq 'Common'); + require "Bugzilla/Config/$panel.pm"; my @module_param_list = "Bugzilla::Config::${panel}"->get_param_list(); my $item = { name => lc($panel), current => ($current_panel eq lc($panel)) ? 1 : 0, -- cgit v1.2.3-24-g4f1b