diff options
author | Frédéric Buclin <LpSolit@gmail.com> | 2013-03-08 12:38:50 +0100 |
---|---|---|
committer | Frédéric Buclin <LpSolit@gmail.com> | 2013-03-08 12:38:50 +0100 |
commit | 704644a4660cb25b3bbbc233537c3d8fd5029ea1 (patch) | |
tree | 3b80a34a8650b953b0ea15516982c6e4148a3ee9 /template/en/default/bug | |
parent | 564fb6842b0d0be49a58e1ed30a94b8f0a2c511e (diff) | |
download | bugzilla-704644a4660cb25b3bbbc233537c3d8fd5029ea1.tar.gz bugzilla-704644a4660cb25b3bbbc233537c3d8fd5029ea1.tar.xz |
Bug 848250: Bug summary tooltip now includes "---" for unresolved bugs
r=dkl a=LpSolit
Diffstat (limited to 'template/en/default/bug')
-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 4e62e04ec..40031e16f 100644 --- a/template/en/default/bug/link.html.tmpl +++ b/template/en/default/bug/link.html.tmpl @@ -24,7 +24,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) %] |