summaryrefslogtreecommitdiffstats
path: root/process_bug.cgi
diff options
context:
space:
mode:
authorgerv%gerv.net <>2002-04-18 07:59:07 +0200
committergerv%gerv.net <>2002-04-18 07:59:07 +0200
commit8d1fde29256288a6de5aefd9fc7b7345b58fbedf (patch)
treec7fd1228e3e95fb88219eefd0546911f127b95c8 /process_bug.cgi
parent355cb9728d83a04e420501fd8402e88fb08daf1f (diff)
downloadbugzilla-8d1fde29256288a6de5aefd9fc7b7345b58fbedf.tar.gz
bugzilla-8d1fde29256288a6de5aefd9fc7b7345b58fbedf.tar.xz
Bug 137954 - Empty "move-button-text" field blocks changing bugs. Patch by gerv, 2xr=justdave.
Diffstat (limited to 'process_bug.cgi')
-rwxr-xr-xprocess_bug.cgi2
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();