diff options
author | jocuri%softhome.net <> | 2004-12-07 02:07:54 +0100 |
---|---|---|
committer | jocuri%softhome.net <> | 2004-12-07 02:07:54 +0100 |
commit | c66a20756d1ff38efce0ffd4bd63ccf8651127c9 (patch) | |
tree | bbe66ad022abc421d9f62ede5da5a8b85a3850e6 /process_bug.cgi | |
parent | 0c57e438f7d8810660eeb5cf3f5c358a14f3b1ee (diff) | |
download | bugzilla-c66a20756d1ff38efce0ffd4bd63ccf8651127c9.tar.gz bugzilla-c66a20756d1ff38efce0ffd4bd63ccf8651127c9.tar.xz |
Patch for bug 258711: move.pl should honour emailsuffix; patch by Marc Schumann <wurblzap@gmail.com>, r=justdave, a=justdave.
Diffstat (limited to 'process_bug.cgi')
-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 6ee94a161..221bf58f0 100755 --- a/process_bug.cgi +++ b/process_bug.cgi @@ -559,7 +559,7 @@ if (defined $::FORM{action}) { $action = trim($::FORM{action}); } if (Param("move-enabled") && $action eq Param("move-button-text")) { - $::FORM{'buglist'} = join (":", @idlist); + $cgi->param('buglist', join (":", @idlist)); do "move.pl" || die "Error executing move.cgi: $!"; PutFooter(); exit; |