Bug moving code is now fully implemented. To use it, turn on the param and set the move related params.

git-svn-id: svn://10.0.0.236/trunk@74198 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
endico%mozilla.org
2000-07-13 23:12:52 +00:00
parent bc2de9b1ae
commit 47f5d073f0
6 changed files with 289 additions and 113 deletions

View File

@@ -255,6 +255,18 @@ if (defined $::FORM{'id'}) {
}
}
my $action = '';
if (defined $::FORM{action}) {
$action = trim($::FORM{action});
}
if ($action eq Param("move-button-text")) {
$::FORM{'buglist'} = join (":", @idlist);
do "move.pl" || die "Error executing move.cgi: $!";
PutFooter();
exit;
}
if (!defined $::FORM{'who'}) {
$::FORM{'who'} = $::COOKIE{'Bugzilla_login'};
}