Skip to content

Commit

Permalink
Fix ASP comment body transfer
Browse files Browse the repository at this point in the history
  • Loading branch information
linc committed Dec 27, 2022
1 parent b9b0535 commit 9fda192
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Source/AspPlayground.php
Expand Up @@ -152,13 +152,13 @@ protected function comments(ExportModel $ex): void
'parent' => 'ForeignID', // Preserve tree just in case.
'Mem' => 'InsertUserID',
'dateCreated' => 'DateInserted',
'Body' => 'Body',
//'Body' => 'Body',
];

// Avoid adding OP redundantly.
$skipOP = '';
if ($this->getDiscussionBodyMode()) {
$skipOP = "where messageID != threadID";
$skipOP = "where parent != 0";
}
$ex->export(
'Comment',
Expand Down

0 comments on commit 9fda192

Please sign in to comment.