ref https://www.woltlab.com/community/thread/305102-importer-vbulletin-5-x/?postID=
1959845#post1959845
'activationCode' => $row['activationType'] !== null && $row['activationType'] == 0 && $row['emailchange'] == 0 ? UserRegistrationUtil::getActivationCode() : 0, // vB's codes are strings
'oldUsername' => '',
'registrationIpAddress' => UserUtil::convertIPv4To6($row['ipaddress']), // TODO: check whether this is the registration IP
- 'signature' => self::fixBBCodes($row['signature']),
+ 'signature' => self::fixBBCodes($row['signature'] ?: ''),
'userTitle' => ($row['customtitle'] != 0) ? $row['usertitle'] : '',
'lastActivityTime' => $row['lastactivity'],
];