From 85f8adcafb46ad3210c9f6f32ddf0a04d0c6bbb0 Mon Sep 17 00:00:00 2001 From: "lpsolit%gmail.com" <> Date: Wed, 12 Oct 2005 22:15:06 +0000 Subject: =?UTF-8?q?Bug=20312150:=20Some=20routines=20are=20not=20exported?= =?UTF-8?q?=20in=20Bugzilla/Config/Common.pm=20-=20Patch=20by=20Fr=C3=A9d?= =?UTF-8?q?=C3=A9ric=20Buclin=20=20r=3Djoel=20a=3Djustd?= =?UTF-8?q?ave?= 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.1