From: justdave%syndicomm.com <> Date: Fri, 17 Oct 2003 09:07:55 +0000 (+0000) Subject: Correcting the previous backout attempt, apparrently typoed a version number last... X-Git-Tag: bugzilla-2.17.5~39 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=cb122437f6e0700aec4f1fd85382949adbdf0576;p=thirdparty%2Fbugzilla.git Correcting the previous backout attempt, apparrently typoed a version number last time --- diff --git a/process_bug.cgi b/process_bug.cgi index 5608c0528d..e504fd7ea9 100755 --- a/process_bug.cgi +++ b/process_bug.cgi @@ -842,15 +842,15 @@ if (defined $::FORM{newcc} || defined $::FORM{removecc} || defined $::FORM{massc } if ($cc_add) { - $cc_add =~ s/^[\s,]+//; # Remove leading delimiters. - foreach my $person ( split(/[\s,]+/, $cc_add) ) { + $cc_add =~ s/[\s,]+/ /g; # Change all delimiters to a single space + foreach my $person ( split(" ", $cc_add) ) { my $pid = DBNameToIdAndCheck($person); $cc_add{$pid} = $person; } } if ($cc_remove) { - $cc_remove =~ s/^[\s,]+//; # Remove leading delimiters. - foreach my $person ( split(/[\s,]+/, $cc_remove) ) { + $cc_remove =~ s/[\s,]+/ /g; # Change all delimiters to a single space + foreach my $person ( split(" ", $cc_remove) ) { my $pid = DBNameToIdAndCheck($person); $cc_remove{$pid} = $person; } @@ -858,7 +858,7 @@ if (defined $::FORM{newcc} || defined $::FORM{removecc} || defined $::FORM{massc } -CheckFormFieldDefined(\%::FORM, 'knob', "check that \"Leave as...\" was selected."); +CheckFormFieldDefined(\%::FORM, 'knob'); SWITCH: for ($::FORM{'knob'}) { /^none$/ && do { last SWITCH;