]> git.donarmstrong.com Git - debbugs.git/commitdiff
[project @ 2002-11-23 00:39:04 by cjwatson]
authorcjwatson <>
Sat, 23 Nov 2002 08:39:04 +0000 (00:39 -0800)
committercjwatson <>
Sat, 23 Nov 2002 08:39:04 +0000 (00:39 -0800)
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

index 1d42b72058ebef83ede5f5290adc0452b4c6aeb0..e5090475a94713dd7f23b94ed8758141a9dc80ad 100644 (file)
@@ -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;