Notify by mail whenever a related bug changes status.

git-svn-id: svn://10.0.0.236/trunk@32940 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
terry%mozilla.org
1999-05-27 18:18:29 +00:00
parent e3d8b1723a
commit eca43aebd8
2 changed files with 14 additions and 7 deletions

View File

@@ -121,7 +121,16 @@ sub DescDependencies {
push(@list, FetchOneColumn());
}
if (@list) {
$result .= "$title: " . join(',', @list) . "\n";
my @verbose;
foreach my $i (@list) {
SendSQL("select bug_status, resolution from bugs where bug_id = $i");
my ($bug_status, $resolution) = (FetchSQLData());
if ($resolution ne "") {
$resolution = "/$resolution";
}
push(@verbose, $i . "[$bug_status$resolution]");
}
$result .= "$title: " . join(', ', @verbose) . "\n";
}
my $tmp = $me;
$me = $target;