summaryrefslogtreecommitdiffstats
path: root/template/en/default/bug/edit.html.tmpl
diff options
context:
space:
mode:
Diffstat (limited to 'template/en/default/bug/edit.html.tmpl')
-rw-r--r--template/en/default/bug/edit.html.tmpl16
1 files changed, 9 insertions, 7 deletions
diff --git a/template/en/default/bug/edit.html.tmpl b/template/en/default/bug/edit.html.tmpl
index c59771eab..de89f1b8e 100644
--- a/template/en/default/bug/edit.html.tmpl
+++ b/template/en/default/bug/edit.html.tmpl
@@ -908,13 +908,15 @@
[%# Block for See Also #%]
[%############################################################################%]
[% BLOCK section_see_also %]
- <tr>
- [% INCLUDE bug/field.html.tmpl
- field = bug_fields.see_also
- value = bug.see_also
- editable = bug.check_can_change_field('see_also', 0, 1)
- %]
- </tr>
+ [% IF Param('use_see_also') || bug.see_also.size %]
+ <tr>
+ [% INCLUDE bug/field.html.tmpl
+ field = bug_fields.see_also
+ value = bug.see_also
+ editable = bug.check_can_change_field('see_also', 0, 1)
+ %]
+ </tr>
+ [% END %]
[% END %]
[%############################################################################%]