From: justdave%syndicomm.com <> Date: Wed, 6 Feb 2002 12:34:10 +0000 (+0000) Subject: Fix for bug 122897: Comments entered on the bug form are now added to the bug before... X-Git-Tag: bugzilla-2.16rc1~239 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2da47954b2518c7340c42d675fe2572b815b0865;p=thirdparty%2Fbugzilla.git 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 r= timeless, bbaetz --- diff --git a/move.pl b/move.pl index e82678d44c..36b83a5fa2 100755 --- a/move.pl +++ b/move.pl @@ -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";