Fix issue when importing articles from wordpress
authorMarcel Werk <burntime@woltlab.com>
Tue, 14 Feb 2023 12:31:38 +0000 (13:31 +0100)
committerMarcel Werk <burntime@woltlab.com>
Tue, 14 Feb 2023 12:31:38 +0000 (13:31 +0100)
The 'comment' column was removed with version 5.5

files/lib/system/exporter/WordPress3xExporter.class.php

index bbbf014352a8e6d7ba7d728f47a9da1762e147ad..207b364bf273ac27ca68c73942f8e30082b76df0 100644 (file)
@@ -357,7 +357,6 @@ class WordPress3xExporter extends AbstractExporter
                 'username' => $row['user_login'] ?: '',
                 'time' => $time,
                 'categoryID' => (isset($categories[$row['ID']]) ? \reset($categories[$row['ID']]) : null),
-                'comments' => $row['comment_count'],
                 'publicationStatus' => $row['post_status'] == 'publish' ? Article::PUBLISHED : Article::UNPUBLISHED,
             ];