diff options
author | Frédéric Buclin <LpSolit@gmail.com> | 2010-07-08 18:58:33 +0200 |
---|---|---|
committer | Frédéric Buclin <LpSolit@gmail.com> | 2010-07-08 18:58:33 +0200 |
commit | 3c61e66fe3d24f183628a7396a3fcd720a95abeb (patch) | |
tree | 8745d0af24240755abea97ea45469715d813c803 /post_bug.cgi | |
parent | 3c64c526467444023b172c6c299aed34e9687ec0 (diff) | |
download | bugzilla-3c61e66fe3d24f183628a7396a3fcd720a95abeb.tar.gz bugzilla-3c61e66fe3d24f183628a7396a3fcd720a95abeb.tar.xz |
Bug 490930: Always store attachments locally if they are over X size (and below some threshold!), don't ever display "Big File" checkbox
r=mkanat a=LpSolit
Diffstat (limited to 'post_bug.cgi')
-rwxr-xr-x | post_bug.cgi | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/post_bug.cgi b/post_bug.cgi index c097a96ce..956856b12 100755 --- a/post_bug.cgi +++ b/post_bug.cgi @@ -205,7 +205,6 @@ if (defined($cgi->upload('data')) || $cgi->param('attachurl')) { isprivate => scalar $cgi->param('isprivate'), isurl => scalar $cgi->param('attachurl'), mimetype => $content_type, - store_in_file => scalar $cgi->param('bigfile'), }); }; Bugzilla->error_mode($error_mode_cache); |