diff options
author | Frédéric Buclin <LpSolit@gmail.com> | 2013-03-08 12:55:02 +0100 |
---|---|---|
committer | Frédéric Buclin <LpSolit@gmail.com> | 2013-03-08 12:55:02 +0100 |
commit | 6d12fbdb592590a68c6305fa484d9fe249c25a52 (patch) | |
tree | be12fb7ef9e3c01a057646f40d511307d8dd82a3 | |
parent | c0c6750ca3ce93f2ca9357aecbfb5cae80b0dfeb (diff) | |
download | bugzilla-6d12fbdb592590a68c6305fa484d9fe249c25a52.tar.gz bugzilla-6d12fbdb592590a68c6305fa484d9fe249c25a52.tar.xz |
Bug 848250: Bug summary tooltip now includes "---" for unresolved bugs
r=dkl a=LpSolit
-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) %] |