]> 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:38:50 +0000 (12:38 +0100)
committerFrédéric Buclin <LpSolit@gmail.com>
Fri, 8 Mar 2013 11:38:50 +0000 (12:38 +0100)
r=dkl a=LpSolit

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

index 4e62e04eca7f1790190d003e446d89395bc6e163..40031e16ff92436c473b5222ad732ba49f491cdc 100644 (file)
@@ -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) %]