зеркало из https://github.com/mozilla/pjs.git
Correcting the previous backout attempt, apparrently typoed a version number last time
This commit is contained in:
Родитель
e0dd4704ab
Коммит
e40ac47a02
|
@ -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;
|
||||
|
|
Загрузка…
Ссылка в новой задаче