summaryrefslogtreecommitdiffstats
path: root/Bugzilla
diff options
context:
space:
mode:
authorjustdave%syndicomm.com <>2002-12-26 16:37:12 +0100
committerjustdave%syndicomm.com <>2002-12-26 16:37:12 +0100
commit0d953c7d4141122d53e89cdb8a40efc7fd9af8da (patch)
tree6d248e1a44e9fd401c4cda5e1d88328fd8d75b5d /Bugzilla
parent1be7ce91dafe74df3db6d96c415dead9a68ce327 (diff)
downloadbugzilla-0d953c7d4141122d53e89cdb8a40efc7fd9af8da.tar.gz
bugzilla-0d953c7d4141122d53e89cdb8a40efc7fd9af8da.tar.xz
Bug 186594: $db_sock was not being exported from Bugzilla/Config.pm
patch by sergeyli@pisem.net (Sergey Lipnevich) r=bbaetz, a=justdave
Diffstat (limited to 'Bugzilla')
-rw-r--r--Bugzilla/Config.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/Bugzilla/Config.pm b/Bugzilla/Config.pm
index 190b11646..c001c583c 100644
--- a/Bugzilla/Config.pm
+++ b/Bugzilla/Config.pm
@@ -46,7 +46,7 @@ use Bugzilla::Util;
%Bugzilla::Config::EXPORT_TAGS =
(
admin => [qw(GetParamList UpdateParams SetParam WriteParams)],
- db => [qw($db_host $db_port $db_name $db_user $db_pass)],
+ db => [qw($db_host $db_port $db_name $db_user $db_pass $db_sock)],
);
Exporter::export_ok_tags('admin', 'db');