diff options
Diffstat (limited to 'admin/boardsync_inc.php')
| -rw-r--r-- | admin/boardsync_inc.php | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/admin/boardsync_inc.php b/admin/boardsync_inc.php index eee3989..d8d25d6 100644 --- a/admin/boardsync_inc.php +++ b/admin/boardsync_inc.php @@ -426,6 +426,17 @@ function board_sync_process_message( $pMbox, $pMsgNum, $pMsgHeader, $pMsgStructu // End check to add attachments to comments to the parent board + // Check for an empty body + // Duplicate subject if we have it + if (empty($storeRow['edit'])) { + if (!empty($storeRow['title'])) { + $storeRow['edit'] = $storeRow['title']; + } + else { + $storeRow['edit'] = "."; + } + } + $storeComment = new LibertyComment( NULL ); $gBitDb->StartTrans(); |
