diff options
author | endico%mozilla.org <> | 2000-07-14 08:12:49 +0200 |
---|---|---|
committer | endico%mozilla.org <> | 2000-07-14 08:12:49 +0200 |
commit | 65695473717fdcadbcc85cac9c469231f352c739 (patch) | |
tree | b5486ebe797e96143e40ca38a08cff2f8288d9fe /process_bug.cgi | |
parent | 17c6ef4af4c9c781d6d7a07be420762dfd065703 (diff) | |
download | bugzilla-65695473717fdcadbcc85cac9c469231f352c739.tar.gz bugzilla-65695473717fdcadbcc85cac9c469231f352c739.tar.xz |
Bug moving code is now fully implemented. To use it, turn on the param and set the move related params.
Diffstat (limited to 'process_bug.cgi')
-rwxr-xr-x | process_bug.cgi | 12 |
1 files changed, 12 insertions, 0 deletions
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'}; } |