]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Bug 848250: Bug summary tooltip now includes "---" for unresolved bugs
authorFrédéric Buclin <LpSolit@gmail.com>
Fri, 8 Mar 2013 11:55:02 +0000 (12:55 +0100)
committerFrédéric Buclin <LpSolit@gmail.com>
Fri, 8 Mar 2013 11:55:02 +0000 (12:55 +0100)
r=dkl a=LpSolit

template/en/default/bug/link.html.tmpl

index b13866850071c2b48a874ed05cd5afa5c3de3bac..dc09848da0558dab958321861b6d754a66106791 100644 (file)
@@ -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) %]