Fixed vB4 Import: Fix for importing thread watches

Steffen

Well-known member
Diff:
diff --git a/src/addons/XFI/Import/Importer/vBulletin.php b/src/addons/XFI/Import/Importer/vBulletin.php
index a5bd9adb2..d451ac301 100644
--- a/src/addons/XFI/Import/Importer/vBulletin.php
+++ b/src/addons/XFI/Import/Importer/vBulletin.php
@@ -3582,7 +3582,7 @@ class vBulletin extends AbstractForumImporter
     {
         $oldThreadIds = $this->sourceDb->quote($oldThreadIds);
 
-        return $this->sourceDb->fetchPairs($this->prepareImportSql($this->prefix, "
+        return $this->sourceDb->fetchAll($this->prepareImportSql($this->prefix, "
             SELECT threadid, userid, emailupdate
             FROM subscribethread
             WHERE threadid IN({$oldThreadIds})
 
Top Bottom