Jafo
Active member
I get an undefined index error when starting an import of data from MyBB1.6.  I fixed this by altering this code in library/Xenforo/Importer/MyBb.php:
	
	
	
		
To:
	
	
	
		
				
			
		Code:
	
	  protected function _convertGlobalPermissionsForGroup(array $group)
   {
     $perms = array();
     if ($group['canview'])To:
		Code:
	
	  protected function _convertGlobalPermissionsForGroup(array $group)
  {
    $perms = array();
     if (!isset($group['canusesig']))
       $group['canusesig'] = false;
     if ($group['canview']) 
 
		 
 
		 
 
		 
 
		 
 
		 
 
		 
 
		