diff options
author | gerv%gerv.net <> | 2002-04-18 07:59:07 +0200 |
---|---|---|
committer | gerv%gerv.net <> | 2002-04-18 07:59:07 +0200 |
commit | 8d1fde29256288a6de5aefd9fc7b7345b58fbedf (patch) | |
tree | c7fd1228e3e95fb88219eefd0546911f127b95c8 | |
parent | 355cb9728d83a04e420501fd8402e88fb08daf1f (diff) | |
download | bugzilla-8d1fde29256288a6de5aefd9fc7b7345b58fbedf.tar.gz bugzilla-8d1fde29256288a6de5aefd9fc7b7345b58fbedf.tar.xz |
Bug 137954 - Empty "move-button-text" field blocks changing bugs. Patch by gerv, 2xr=justdave.
-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(); |