reassign 600234 debbugs thanks On Thu, 14 Oct 2010, Chris Butler wrote: > Processing commands for [email protected]: > > === modified file 'templates/en_US/mail/footer.tmpl' > --- templates/en_US/mail/footer.tmpl 2007-09-22 08:09:13 +0000 > +++ templates/en_US/mail/footer.tmpl 2010-10-14 21:05:37 +0000 > @@ -4,6 +4,7 @@ > for my $bug ($ref,@refs) { > next unless defined $bug; > next if exists $ref_handled{$bug}; > + next if $ref < 0; > $ref_handled{$bug} = 1; > $OUT .= bugurl($bug).qq(\n); > }
This is actually the wrong way to handle it. [You have to push the bug through the cloned bug listings first, and then not add negative numbers to the $ref_handled list.] It's correctly handled in the new version of this code that I haven't yet merged. But thanks for the report and the patch. Don Armstrong -- To punish me for my contempt of authority, Fate has made me an authority myself -- Albert Einstein http://www.donarmstrong.com http://rzlab.ucr.edu -- To UNSUBSCRIBE, email to [email protected] with a subject of "unsubscribe". Trouble? Contact [email protected]

