Fix import of article comment (responses)
authorMatthias Schmidt <gravatronics@live.com>
Mon, 9 Sep 2019 16:58:48 +0000 (18:58 +0200)
committerMatthias Schmidt <gravatronics@live.com>
Mon, 9 Sep 2019 16:58:48 +0000 (18:58 +0200)
files/lib/system/exporter/WBB4xExporter.class.php

index 223de78b9ed34ff14f384edd3c243ac20c2fe4b8..0e3e6579d42806b51c0cb2fbc17c00b806c011f7 100644 (file)
@@ -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);
        }
        
        /**