Bug 252272: Allow extremely large attachments to be stored locally

r=wurblzap.a=justdave


git-svn-id: svn://10.0.0.236/trunk@169529 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
bugreport%peshkin.net
2005-02-20 17:03:10 +00:00
parent 72a6885a89
commit 42802792c7
7 changed files with 143 additions and 16 deletions

View File

@@ -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');