diff options
author | justdave%syndicomm.com <> | 2002-12-26 15:37:12 +0000 |
---|---|---|
committer | justdave%syndicomm.com <> | 2002-12-26 15:37:12 +0000 |
commit | 0d953c7d4141122d53e89cdb8a40efc7fd9af8da (patch) | |
tree | 6d248e1a44e9fd401c4cda5e1d88328fd8d75b5d /Bugzilla | |
parent | 1be7ce91dafe74df3db6d96c415dead9a68ce327 (diff) | |
download | bugs-0d953c7d4141122d53e89cdb8a40efc7fd9af8da.tar bugs-0d953c7d4141122d53e89cdb8a40efc7fd9af8da.tar.gz bugs-0d953c7d4141122d53e89cdb8a40efc7fd9af8da.tar.bz2 bugs-0d953c7d4141122d53e89cdb8a40efc7fd9af8da.tar.xz bugs-0d953c7d4141122d53e89cdb8a40efc7fd9af8da.zip |
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.pm | 2 |
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'); |