diff options
author | Simon Green <sgreen+mozilla@redhat.com> | 2012-01-11 21:12:02 +0100 |
---|---|---|
committer | Frédéric Buclin <LpSolit@gmail.com> | 2012-01-11 21:12:02 +0100 |
commit | ad8500948cd54bfae85b6d6613f610eff4fbbfe5 (patch) | |
tree | ad01a9813809609b4139cecb0484534637898c44 /template/en/default/attachment | |
parent | 34c969c2144e5910e7532946d0a0313f48d31f01 (diff) | |
download | bugs-ad8500948cd54bfae85b6d6613f610eff4fbbfe5.tar bugs-ad8500948cd54bfae85b6d6613f610eff4fbbfe5.tar.gz bugs-ad8500948cd54bfae85b6d6613f610eff4fbbfe5.tar.bz2 bugs-ad8500948cd54bfae85b6d6613f610eff4fbbfe5.tar.xz bugs-ad8500948cd54bfae85b6d6613f610eff4fbbfe5.zip |
Bug 717210: If all attachments are stored locally (maxattachmentsize = 0, maxlocalattachment > 0), the link to attach files to bugs is not displayed
r/a=LpSolit
Diffstat (limited to 'template/en/default/attachment')
-rw-r--r-- | template/en/default/attachment/list.html.tmpl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/template/en/default/attachment/list.html.tmpl b/template/en/default/attachment/list.html.tmpl index 4ad5e528a..fa8e4774e 100644 --- a/template/en/default/attachment/list.html.tmpl +++ b/template/en/default/attachment/list.html.tmpl @@ -19,7 +19,7 @@ # Frédéric Buclin <LpSolit@gmail.com> #%] -[% RETURN UNLESS attachments.size || Param("maxattachmentsize") %] +[% RETURN UNLESS attachments.size || Param("maxattachmentsize") || Param("maxlocalattachment") %] <script type="text/javascript"> <!-- @@ -160,7 +160,7 @@ function toggle_display(link) { [% END %] </span> [% END %] - [% IF Param("maxattachmentsize") %] + [% IF Param("maxattachmentsize") || Param("maxlocalattachment") %] <a href="attachment.cgi?bugid=[% bugid %]&action=enter">Add an attachment</a> (proposed patch, testcase, etc.) [% END %] |