From: gerv%gerv.net <> Date: Thu, 18 Apr 2002 05:59:07 +0000 (+0000) Subject: Bug 137954 - Empty "move-button-text" field blocks changing bugs. Patch by gerv,... X-Git-Tag: bugzilla-2.16rc1~107 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8d1fde29256288a6de5aefd9fc7b7345b58fbedf;p=thirdparty%2Fbugzilla.git Bug 137954 - Empty "move-button-text" field blocks changing bugs. Patch by gerv, 2xr=justdave. --- diff --git a/process_bug.cgi b/process_bug.cgi index ebdf43b778..e89fea970a 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();