summaryrefslogtreecommitdiff
path: root/admin
diff options
context:
space:
mode:
Diffstat (limited to 'admin')
-rw-r--r--admin/boardsync_inc.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/admin/boardsync_inc.php b/admin/boardsync_inc.php
index be1ba40..43e485b 100644
--- a/admin/boardsync_inc.php
+++ b/admin/boardsync_inc.php
@@ -200,7 +200,7 @@ function board_sync_process_message( $pMbox, $pMsgNum, $pRawHeader, $pMsgStructu
$matches = array();
$toAddresses = array();
- $allRecipients = '';
+ $allRecipients = "";
/* DEPRECATED
$allRecipients = board_sync_get_header('To', $pRawHeader).','.
board_sync_get_header('Cc', $pRawHeader);
@@ -209,7 +209,7 @@ function board_sync_process_message( $pMbox, $pMsgNum, $pRawHeader, $pMsgStructu
$allRecipients .= $header->toaddress;
}
if( isset( $header->ccaddress ) ){
- $allRecipients .= $header->ccaddress;
+ $allRecipients .= (( $allRecipients != "" )?",":"") . $header->ccaddress;
}
if ($pLog) print " ---- $allRecipients ----\n";