From: cjwatson <> Date: Sat, 23 Nov 2002 08:39:04 +0000 (-0800) Subject: [project @ 2002-11-23 00:39:04 by cjwatson] X-Git-Tag: release/2.6.0~989 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=6f37f38409a360702b088fabab85430139d1aeb6;p=debbugs.git [project @ 2002-11-23 00:39:04 by cjwatson] Display pending+fixed bugs as "fixed in NMU", not "pending upload". (Removing the pending tag when tagging fixed or closing would probably make sense too, but in the meantime this gets the order right.) --- diff --git a/cgi/common.pl b/cgi/common.pl index 1d42b720..e5090475 100644 --- a/cgi/common.pl +++ b/cgi/common.pl @@ -541,8 +541,8 @@ sub getbugstatus { $status{"pending"} = 'pending'; $status{"pending"} = 'forwarded' if (length($status{"forwarded"})); - $status{"pending"} = 'fixed' if ($status{"tags"} =~ /\bfixed\b/); $status{"pending"} = 'pending-fixed' if ($status{"tags"} =~ /\bpending\b/); + $status{"pending"} = 'fixed' if ($status{"tags"} =~ /\bfixed\b/); $status{"pending"} = 'done' if (length($status{"done"})); return \%status;