diff options
author | 2005-02-21 01:03:09 +0000 | |
---|---|---|
committer | 2005-02-21 01:03:09 +0000 | |
commit | 30a52319c024fefb2b4e4aa7bd974e4af7af30cd (patch) | |
tree | 4ee72b234e27753d291454020d97cc03e8f51a94 /Bugzilla/Config.pm | |
parent | Bug 282124: Remove globals.pl and CGI.pl from editclassifications.cgi (diff) | |
download | bugzilla-30a52319c024fefb2b4e4aa7bd974e4af7af30cd.tar.gz bugzilla-30a52319c024fefb2b4e4aa7bd974e4af7af30cd.tar.bz2 bugzilla-30a52319c024fefb2b4e4aa7bd974e4af7af30cd.zip |
Bug 252272: Allow extremely large attachments to be stored locally
r=wurblzap.a=justdave
Diffstat (limited to 'Bugzilla/Config.pm')
-rw-r--r-- | Bugzilla/Config.pm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Bugzilla/Config.pm b/Bugzilla/Config.pm index 5c070e372..3849f146b 100644 --- a/Bugzilla/Config.pm +++ b/Bugzilla/Config.pm @@ -55,6 +55,7 @@ use Bugzilla::Util; our $libpath = '.'; our $localconfig = "$libpath/localconfig"; our $datadir = "$libpath/data"; +our $attachdir = "$datadir/attachments"; our $templatedir = "$libpath/template"; our $webdotdir = "$datadir/webdot"; @@ -72,7 +73,8 @@ our $webdotdir = "$datadir/webdot"; ( admin => [qw(GetParamList UpdateParams SetParam WriteParams)], db => [qw($db_driver $db_host $db_port $db_name $db_user $db_pass $db_sock)], - locations => [qw($libpath $localconfig $datadir $templatedir $webdotdir)], + locations => [qw($libpath $localconfig $attachdir + $datadir $templatedir $webdotdir)], ); Exporter::export_ok_tags('admin', 'db', 'locations'); |