From: justdave%syndicomm.com <> Date: Thu, 26 Dec 2002 15:37:12 +0000 (+0000) Subject: Bug 186594: $db_sock was not being exported from Bugzilla/Config.pm X-Git-Tag: bugzilla-2.17.3~11 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0d953c7d4141122d53e89cdb8a40efc7fd9af8da;p=thirdparty%2Fbugzilla.git Bug 186594: $db_sock was not being exported from Bugzilla/Config.pm patch by sergeyli@pisem.net (Sergey Lipnevich) r=bbaetz, a=justdave --- diff --git a/Bugzilla/Config.pm b/Bugzilla/Config.pm index 190b116466..c001c583cf 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');