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:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user