diff options
| author | wjames5 <will@tekimaki.com> | 2009-03-27 22:39:08 +0000 |
|---|---|---|
| committer | wjames5 <will@tekimaki.com> | 2009-03-27 22:39:08 +0000 |
| commit | 936405f58aa3234aeb1b3e00ec747103f3882925 (patch) | |
| tree | 64962879e5913bdf36179d3c1bc6346f922d91bb /admin | |
| parent | d75f2c4943d1fdbca5237426c355ee66d613b1ef (diff) | |
| download | boards-936405f58aa3234aeb1b3e00ec747103f3882925.tar.gz boards-936405f58aa3234aeb1b3e00ec747103f3882925.tar.bz2 boards-936405f58aa3234aeb1b3e00ec747103f3882925.zip | |
email can have multiple text parts, string em all together
Diffstat (limited to 'admin')
| -rw-r--r-- | admin/boardsync_inc.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/admin/boardsync_inc.php b/admin/boardsync_inc.php index 04f1072..3895d12 100644 --- a/admin/boardsync_inc.php +++ b/admin/boardsync_inc.php @@ -263,15 +263,15 @@ function board_sync_process_message( $pMbox, $pMsgNum, $pRawHeader, $pMsgStructu } break; } - $plainBody = NULL; - $htmlBody = NULL; + $plainBody = ""; + $htmlBody = ""; foreach( array_keys( $partHash ) as $i ) { if( !empty( $partHash[$i]['plain'] ) ) { - $plainBody = $partHash[$i]['plain']; + $plainBody .= $partHash[$i]['plain']; } if( !empty( $partHash[$i]['html'] ) ) { - $htmlBody = $partHash[$i]['html']; + $htmlBody .= $partHash[$i]['html']; } if( !empty( $partHash[$i]['attachment'] ) ) { $storeRow['_files_override'][] = array( |
