diff options
author | bbaetz%student.usyd.edu.au <> | 2002-08-27 18:35:05 +0200 |
---|---|---|
committer | bbaetz%student.usyd.edu.au <> | 2002-08-27 18:35:05 +0200 |
commit | 26f9cef39015907b9347bbdbd07c0bb35edb988e (patch) | |
tree | c7b352071c25ac838ab1ec316a06bf3404965663 /process_bug.cgi | |
parent | f5c9d40bc27590493fed124fc8037c24fdd08d73 (diff) | |
download | bugzilla-26f9cef39015907b9347bbdbd07c0bb35edb988e.tar.gz bugzilla-26f9cef39015907b9347bbdbd07c0bb35edb988e.tar.xz |
Bug 161203 - Bug changes with intermediate pages munges fields with
multiple values (e.g., CC)
patch by "Randall M! Gee", r=bbaetz, myk
Diffstat (limited to 'process_bug.cgi')
-rwxr-xr-x | process_bug.cgi | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/process_bug.cgi b/process_bug.cgi index a34616058..45d8ba1dd 100755 --- a/process_bug.cgi +++ b/process_bug.cgi @@ -41,7 +41,6 @@ use RelationSet; use vars qw(%versions %components %COOKIE - %MFORM %legal_opsys %legal_platform %legal_priority @@ -204,6 +203,7 @@ if ((($::FORM{'id'} && $::FORM{'product'} ne $::oldproduct) # a verification form. if (!$vok || !$cok || !$mok || (Param('usebuggroups') && !defined($::FORM{'addtonewgroup'}))) { $vars->{'form'} = \%::FORM; + $vars->{'mform'} = \%::MFORM; if (!$vok || !$cok || !$mok) { $vars->{'verify_fields'} = 1; @@ -359,6 +359,7 @@ sub DuplicateUserConfirm { # ask the duper what he/she wants to do. $vars->{'form'} = \%::FORM; + $vars->{'mform'} = \%::MFORM; $vars->{'original_bug_id'} = $original; $vars->{'duplicate_bug_id'} = $dupe; @@ -1014,6 +1015,7 @@ foreach my $id (@idlist) { $::FORM{'delta_ts'} = $delta_ts; $vars->{'form'} = \%::FORM; + $vars->{'mform'} = \%::MFORM; $vars->{'bug_id'} = $id; $vars->{'quoteUrls'} = \"eUrls; |