summaryrefslogtreecommitdiff
path: root/admin
diff options
context:
space:
mode:
authorwjames5 <will@tekimaki.com>2009-06-20 17:52:57 +0000
committerwjames5 <will@tekimaki.com>2009-06-20 17:52:57 +0000
commitf03ebbec04f10ccc84d9a1e55eb99f41ff045425 (patch)
tree551e0f11101392bf412052110c61faa5e92adf4d /admin
parent1afb34a793983b1d66dc8670db985c7f7aee03be (diff)
downloadboards-f03ebbec04f10ccc84d9a1e55eb99f41ff045425.tar.gz
boards-f03ebbec04f10ccc84d9a1e55eb99f41ff045425.tar.bz2
boards-f03ebbec04f10ccc84d9a1e55eb99f41ff045425.zip
need comma to separate lists
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";