Commit 8d1fde29 authored by gerv%gerv.net's avatar gerv%gerv.net

Bug 137954 - Empty "move-button-text" field blocks changing bugs. Patch by gerv, 2xr=justdave.

parent 355cb972
...@@ -363,7 +363,7 @@ my $action = ''; ...@@ -363,7 +363,7 @@ my $action = '';
if (defined $::FORM{action}) { if (defined $::FORM{action}) {
$action = trim($::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); $::FORM{'buglist'} = join (":", @idlist);
do "move.pl" || die "Error executing move.cgi: $!"; do "move.pl" || die "Error executing move.cgi: $!";
PutFooter(); PutFooter();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment