From 95f9fb400fc78d18257221e5671f25878de3178f Mon Sep 17 00:00:00 2001 From: Don Armstrong Date: Sat, 10 Aug 2019 20:16:57 -0700 Subject: [PATCH] fix blockedby/blocks in buginfo template --- templates/en_US/cgi/bugreport_buginfo.tx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) 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 { :>.<: } :> : }
  • -- 2.39.2