Commit 702d4301 authored by Frédéric Buclin's avatar Frédéric Buclin

Bug 560215: maxattachmentsize = 0 means that you cannot attach any file to bugs

r=mkanat a=LpSolit
parent d26192f5
......@@ -66,9 +66,8 @@
maxattachmentsize => "The maximum size (in kilobytes) of attachments. " _
"$terms.Bugzilla will not accept attachments greater than this number " _
"of kilobytes in size. To accept attachments of any size " _
"(subject to the limitations of your server software), set this " _
"value to zero.",
"of kilobytes in size. Setting this parameter to 0 will prevent " _
"attaching files to ${terms.bugs}.",
maxlocalattachment => "The maximum size (in megabytes) of attachments identified by " _
"the user as 'Big Files' to be stored locally on the webserver. " _
......
......@@ -19,6 +19,8 @@
# Frédéric Buclin <LpSolit@gmail.com>
#%]
[% RETURN UNLESS attachments.size || Param("maxattachmentsize") %]
<script type="text/javascript">
<!--
function toggle_display(link) {
......@@ -155,8 +157,10 @@ function toggle_display(link) {
[% END %]
</span>
[% END %]
<a href="attachment.cgi?bugid=[% bugid %]&amp;action=enter">Add an attachment</a>
(proposed patch, testcase, etc.)
[% IF Param("maxattachmentsize") %]
<a href="attachment.cgi?bugid=[% bugid %]&amp;action=enter">Add an attachment</a>
(proposed patch, testcase, etc.)
[% END %]
</td>
</tr>
</table>
......
......@@ -548,6 +548,7 @@ TUI_hide_default('expert_fields');
</tr>
[% END %]
[% IF Param("maxattachmentsize") %]
<tr>
<th>Attachment:</th>
<td colspan="3">
......@@ -582,6 +583,7 @@ TUI_hide_default('expert_fields');
</script>
</td>
</tr>
[% END %]
</tbody>
<tbody class="expert_fields">
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment