From 0921ba88c995757f41c11f2460134366585eb0eb Mon Sep 17 00:00:00 2001 From: Matthias Schmidt Date: Mon, 9 Sep 2019 18:58:48 +0200 Subject: [PATCH] Fix import of article comment (responses) --- files/lib/system/exporter/WBB4xExporter.class.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/files/lib/system/exporter/WBB4xExporter.class.php b/files/lib/system/exporter/WBB4xExporter.class.php index 223de78..0e3e657 100644 --- a/files/lib/system/exporter/WBB4xExporter.class.php +++ b/files/lib/system/exporter/WBB4xExporter.class.php @@ -2884,7 +2884,7 @@ class WBB4xExporter extends AbstractExporter { * Counts article comments. */ public function countArticleComments() { - return $this->countComments('com.woltlab.wcf.article.comment'); + return $this->countComments('com.woltlab.wcf.articleComment'); } /** @@ -2894,14 +2894,14 @@ class WBB4xExporter extends AbstractExporter { * @param integer $limit */ public function exportArticleComments($offset, $limit) { - $this->exportComments('com.woltlab.wcf.article.comment', 'com.woltlab.wcf.article.comment', $offset, $limit); + $this->exportComments('com.woltlab.wcf.articleComment', 'com.woltlab.wcf.article.comment', $offset, $limit); } /** * Counts article comment responses. */ public function countArticleCommentResponses() { - return $this->countCommentResponses('com.woltlab.wcf.article.comment'); + return $this->countCommentResponses('com.woltlab.wcf.articleComment'); } /** @@ -2911,7 +2911,7 @@ class WBB4xExporter extends AbstractExporter { * @param integer $limit */ public function exportArticleCommentResponses($offset, $limit) { - $this->exportCommentResponses('com.woltlab.wcf.article.comment', 'com.woltlab.wcf.article.comment.response', $offset, $limit); + $this->exportCommentResponses('com.woltlab.wcf.articleComment', 'com.woltlab.wcf.article.comment.response', $offset, $limit); } /** -- 2.20.1