diff options
author | lpsolit%gmail.com <> | 2006-04-18 05:19:35 +0200 |
---|---|---|
committer | lpsolit%gmail.com <> | 2006-04-18 05:19:35 +0200 |
commit | 246f6778660fe4a878b1f08eee175b1076c5e224 (patch) | |
tree | ea21520a5859f2820eefdefa74829783cc3116a9 /Bugzilla/Config | |
parent | 3811d9d8a825a4aadaea2ac8e489d410fe408e28 (diff) | |
download | bugzilla-246f6778660fe4a878b1f08eee175b1076c5e224.tar.gz bugzilla-246f6778660fe4a878b1f08eee175b1076c5e224.tar.xz |
Bug 44595: Implement an interface for administrators to delete attachments - Patch by Frédéric Buclin <LpSolit@gmail.com> r=wicked, justdave 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 449908528..bbaaaa63d 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_attachment_deletion', + type => 'b', + default => 0 + }, + { name => 'allow_attach_url', type => 'b', default => 0 |