]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Bug 137954 - Empty "move-button-text" field blocks changing bugs. Patch by gerv,...
authorgerv%gerv.net <>
Thu, 18 Apr 2002 05:59:07 +0000 (05:59 +0000)
committergerv%gerv.net <>
Thu, 18 Apr 2002 05:59:07 +0000 (05:59 +0000)
process_bug.cgi

index ebdf43b7782ba077b0d686f80f2bcdef5245e296..e89fea970a97bfe0d9a3a80898517aaaf4d3aacc 100755 (executable)
@@ -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();