From 65695473717fdcadbcc85cac9c469231f352c739 Mon Sep 17 00:00:00 2001 From: "endico%mozilla.org" <> Date: Fri, 14 Jul 2000 06:12:49 +0000 Subject: Bug moving code is now fully implemented. To use it, turn on the param and set the move related params. --- process_bug.cgi | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'process_bug.cgi') diff --git a/process_bug.cgi b/process_bug.cgi index 689034bd9..3479710f1 100755 --- a/process_bug.cgi +++ b/process_bug.cgi @@ -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'}; } -- cgit v1.2.3-24-g4f1b