diff options
author | bugreport%peshkin.net <> | 2005-10-20 05:16:12 +0200 |
---|---|---|
committer | bugreport%peshkin.net <> | 2005-10-20 05:16:12 +0200 |
commit | b2966165174d850b13be0e25eba6e9053142ed00 (patch) | |
tree | 76dacbad2b7941d582dc095f7a06352533411ade /Bugzilla/Config | |
parent | a38539a73699a6d03c6d129375cecde85267269a (diff) | |
download | bugzilla-b2966165174d850b13be0e25eba6e9053142ed00.tar.gz bugzilla-b2966165174d850b13be0e25eba6e9053142ed00.tar.xz |
Bug 149504 Permit a reference to a URL to be treated as an attachment
Patch by Joel Peshkin <bugreport@peshkin.net>
r=lpsolit, a=justdave
Diffstat (limited to 'Bugzilla/Config')
-rw-r--r-- | Bugzilla/Config/Attachment.pm | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Bugzilla/Config/Attachment.pm b/Bugzilla/Config/Attachment.pm index 8192d5f9f..449908528 100644 --- a/Bugzilla/Config/Attachment.pm +++ b/Bugzilla/Config/Attachment.pm @@ -41,6 +41,11 @@ sub get_param_list { my $class = shift; my @param_list = ( { + name => 'allow_attach_url', + type => 'b', + default => 0 + }, + { name => 'maxpatchsize', type => 't', default => '1000', |