Fixed Import Threads and Posts error

EasyTarget

Well-known member
Did a clean install of XF
Importing from vB 3.6

On the step of import threads and posts got an error in the Importer\vBulletin.php file

line 2229
PHP:
: 'prefix_id' => $this->_mapLookUp($threadPrefixMap, $thread['prefixid']),

my instance of vBulletin doesn't have prefix id's.

I corrected by changing the line to
PHP:
 'prefix_id' => 0,
 
Top Bottom