diff options
Diffstat (limited to 'process_bug.cgi')
-rwxr-xr-x | process_bug.cgi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/process_bug.cgi b/process_bug.cgi index ebdf43b77..e89fea970 100755 --- a/process_bug.cgi +++ b/process_bug.cgi @@ -363,7 +363,7 @@ my $action = ''; if (defined $::FORM{action}) { $action = trim($::FORM{action}); } -if ($action eq Param("move-button-text")) { +if (Param("move-enabled") && $action eq Param("move-button-text")) { $::FORM{'buglist'} = join (":", @idlist); do "move.pl" || die "Error executing move.cgi: $!"; PutFooter(); |