Fix adding multiple users to CC after flag verification

master
Vitaliy Filippov 2014-07-22 19:05:03 +04:00
parent 51334918c7
commit e8c9df5799
1 changed files with 1 additions and 1 deletions

View File

@ -491,7 +491,7 @@ if ($ARGS->{newcc} || $ARGS->{addselfcc} || $ARGS->{removecc} || $ARGS->{masscc}
}
else
{
$cc_add = $ARGS->{newcc};
$cc_add = ref $ARGS->{newcc} ? join(', ', @{$ARGS->{newcc}}) : $ARGS->{newcc}; # FIXME array[]
# 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}) # FIXME array[]