summaryrefslogtreecommitdiffstats
path: root/Bugzilla/Config.pm
diff options
context:
space:
mode:
authormkanat%bugzilla.org <>2006-07-29 19:36:56 +0200
committermkanat%bugzilla.org <>2006-07-29 19:36:56 +0200
commit3dcfda49cafd05b35844fdb194bd783ae3857d02 (patch)
tree450d6a3e02e00f6393f4273e34e537820770b3b2 /Bugzilla/Config.pm
parent6ad8e7d4f14fe92a29082586d48ae815799250d9 (diff)
downloadbugzilla-3dcfda49cafd05b35844fdb194bd783ae3857d02.tar.gz
bugzilla-3dcfda49cafd05b35844fdb194bd783ae3857d02.tar.xz
Bug 346375: Move the code that gets the initial $dbh into Bugzilla::DB
Patch By Max Kanat-Alexander <mkanat@bugzilla.org> (module owner) a=justdave
Diffstat (limited to 'Bugzilla/Config.pm')
-rw-r--r--Bugzilla/Config.pm3
1 files changed, 2 insertions, 1 deletions
diff --git a/Bugzilla/Config.pm b/Bugzilla/Config.pm
index 464163d89..22bdeb1f5 100644
--- a/Bugzilla/Config.pm
+++ b/Bugzilla/Config.pm
@@ -41,7 +41,8 @@ use Bugzilla::Constants;
%Bugzilla::Config::EXPORT_TAGS =
(
admin => [qw(UpdateParams SetParam WriteParams)],
- db => [qw($db_driver $db_host $db_port $db_name $db_user $db_pass $db_sock)],
+ db => [qw($db_driver $db_host $db_port $db_name $db_user $db_pass $db_sock
+ $db_check)],
localconfig => [qw($cvsbin $interdiffbin $diffpath $webservergroup)],
);
Exporter::export_ok_tags('admin', 'db', 'localconfig');