diff options
author | Dave Lawrence <dlawrence@mozilla.com> | 2013-03-08 16:43:58 +0100 |
---|---|---|
committer | Dave Lawrence <dlawrence@mozilla.com> | 2013-03-08 16:43:58 +0100 |
commit | c37a505409f6cb276d3b768af60e50c096bcba70 (patch) | |
tree | cf6f2a23f7082517e19adf3baabd6d73cfd2e93a | |
parent | 136d427d43ec2536ab2b23291ff6ee7614a93c49 (diff) | |
parent | 6d12fbdb592590a68c6305fa484d9fe249c25a52 (diff) | |
download | bugzilla-c37a505409f6cb276d3b768af60e50c096bcba70.tar.gz bugzilla-c37a505409f6cb276d3b768af60e50c096bcba70.tar.xz |
merged with bugzilla/4.2
-rw-r--r-- | template/en/default/bug/link.html.tmpl | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/template/en/default/bug/link.html.tmpl b/template/en/default/bug/link.html.tmpl index b13866850..dc09848da 100644 --- a/template/en/default/bug/link.html.tmpl +++ b/template/en/default/bug/link.html.tmpl @@ -36,7 +36,9 @@ [%# We use "FILTER none" here because link_title is filtered down below. %] [% link_title = BLOCK %] [% display_value('bug_status', bug.bug_status) FILTER none %] - [%+ display_value('resolution', bug.resolution) FILTER none %] + [% IF bug.resolution %] + [%+ display_value('resolution', bug.resolution) FILTER none %] + [% END %] [% END %] [% IF user.can_see_bug(bug) %] |