mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-12-02 01:48:05 +00:00
Fix for bug 122897: Comments entered on the bug form are now added to the bug before it is closed and moved when moving a bug
to another Bugzilla install. Patch by Dave Miller <justdave@syndicomm.com> r= timeless, bbaetz
This commit is contained in:
parent
0fbd97206f
commit
a0dd58d6e4
@ -121,7 +121,11 @@ foreach my $id (split(/:/, $::FORM{'buglist'})) {
|
||||
SendSQL("UPDATE bugs SET bug_status =\"RESOLVED\" where bug_id=\"$id\"");
|
||||
SendSQL("UPDATE bugs SET resolution =\"MOVED\" where bug_id=\"$id\"");
|
||||
|
||||
my $comment = "Bug moved to " . Param("move-to-url") . ".\n\n";
|
||||
my $comment = "";
|
||||
if (defined $::FORM{'comment'} && $::FORM{'comment'} !~ /^\s*$/) {
|
||||
$comment .= $::FORM{'comment'} . "\n\n";
|
||||
}
|
||||
$comment .= "Bug moved to " . Param("move-to-url") . ".\n\n";
|
||||
$comment .= "If the move succeeded, $exporter will receive a mail\n";
|
||||
$comment .= "containing the number of the new bug in the other database.\n";
|
||||
$comment .= "If all went well, please mark this bug verified, and paste\n";
|
||||
|
Loading…
Reference in New Issue
Block a user