Drupal: switched order of implode(), for scrutinizer.

This commit is contained in:
Shawn Kwang 2019-02-12 15:16:37 -06:00
parent 0f5df9bdcc
commit 57f1fd4778
1 changed files with 1 additions and 1 deletions

View File

@ -830,7 +830,7 @@ function boincteam_sendmessagetoteam_submit($form, &$form_state) {
'from' => '',
'to' => "webmaster@{$base_url}",
'boincteam_headers' => array(
'Bcc' => implode($member_emails, ','),
'Bcc' => implode(',', $member_emails),
),
'subject' => $form_state['validated_built_message']['subject'],
'message' => $mybody,