Fix removing multiple CCs

master
Vitaliy Filippov 2014-05-26 16:29:58 +04:00
parent c74b2c3710
commit 5dfaa712fe
1 changed files with 2 additions and 2 deletions

View File

@ -494,9 +494,9 @@ if ($ARGS->{newcc} || $ARGS->{addselfcc} || $ARGS->{removecc} || $ARGS->{masscc}
$cc_add = $ARGS->{newcc};
# We came from bug_form which uses a select box to determine what cc's
# need to be removed...
if (defined $ARGS->{removecc} && $ARGS->{cc})
if (defined $ARGS->{removecc} && $ARGS->{cc}) # FIXME array[]
{
$cc_remove = $ARGS->{cc};
$cc_remove = ref $ARGS->{cc} ? join(', ', @{$ARGS->{cc}}) : $ARGS->{cc};
}
}