From: Don Armstrong Date: Sun, 11 Aug 2019 03:16:57 +0000 (-0700) Subject: fix blockedby/blocks in buginfo template X-Git-Url: https://git.donarmstrong.com/?p=debbugs.git;a=commitdiff_plain;h=95f9fb400fc78d18257221e5671f25878de3178f fix blockedby/blocks in buginfo template --- diff --git a/templates/en_US/cgi/bugreport_buginfo.tx b/templates/en_US/cgi/bugreport_buginfo.tx index f7d6051..62f3128 100644 --- a/templates/en_US/cgi/bugreport_buginfo.tx +++ b/templates/en_US/cgi/bugreport_buginfo.tx @@ -48,8 +48,8 @@ : if $bug.blocked_by.count {
  • Fix blocked by - : for $bug.blockedby_array -> $bug { - <: bug_links("bug",$bug.bug_num) :>: <: $bug.subject -:> + : for $bug.blocked_by.members_ref -> $bug { + <: $bug.subject -:> <:- if !$~bug.is_last { :>, <: } else { :>.<: } :> : } @@ -58,9 +58,9 @@ : if $bug.blocks.count {
  • Blocking fix for $bug { - <: bug_links("bug",$bug.bug_num) :>: <: $bug.subject -:> - <:- if ! $~bug.is_last { :>, <: } else { :>.<: } :> + : for $bug.blocks.members_ref -> $bug { + <: $bug.subject -:> + <:- if ! $~bug.is_last { :>, <: } else { :>.<: } :> : }