Oops. was counting closed bugs too.

This commit is contained in:
endico%mozilla.org 1999-08-05 21:21:01 +00:00
Родитель f94cab1d47
Коммит f51390d1ad
1 изменённых файлов: 13 добавлений и 1 удалений

Просмотреть файл

@ -576,7 +576,19 @@ FIN
my $bugtotal = 0;
foreach $person (@people)
{
SendSQL ("select count(bug_id) from bugs,profiles where target_milestone=\"$ms\" and userid=assigned_to and userid=\"$person\"");
my $query = "select count(bug_id) from bugs,profiles where target_milestone=\"$ms\" and userid=assigned_to and userid=\"$person\"";
if( $::FORM{'product'} ne "-All-" ) {
$query .= "and bugs.product='$::FORM{'product'}'";
}
$query .= <<FIN;
and
(
bugs.bug_status = 'NEW' or
bugs.bug_status = 'ASSIGNED' or
bugs.bug_status = 'REOPENED'
)
FIN
SendSQL ($query);
my $bugcount = FetchSQLData();
$bugsperperson{$person} = $bugcount;
$bugtotal += $bugcount;