From 6f37f38409a360702b088fabab85430139d1aeb6 Mon Sep 17 00:00:00 2001 From: cjwatson <> Date: Sat, 23 Nov 2002 00:39:04 -0800 Subject: [PATCH] [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.) --- cgi/common.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.39.5