XF 1.1 Importing Warnings from vBulletin

Mr_Bob

Well-known member
Is it currently possible to import warnings/infractions from vBulletin into the new warning system with the current importer? I can't find a way to do so. If it's not, suggestion from me :).
 
It appears not:

library/XenForo/Importer/vBulletin.php

Rich (BB code):
			'reputation' => array(
				'title' => new XenForo_Phrase('import_positive_reputation'),
				'depends' => array('threads')
			),
		);

		// TODO: user upgrades?
		// deferred: albums/comments, announcements, custom bb code, calendars/events, social groups, infractions, tags
	}

	protected function _bootstrap(array $config)
	{
		if ($this->_sourceDb)
		{
			// already run
			return;
		}

		@set_time_limit(0);
 
Yikes.

Warnings/infractions are one of the primary reasons I was waiting for 1.1, but if I can't import all of my existing data, it looks like I'll still have to wait to make the switch. :(
 
Top Bottom