Hello,
error:
Undefined array key 0
Full track:
#0 \applications\convert\sources\Software\Core\Invisioncommunity.php(692): Whoops\Run->handleError(2, 'Undefined array...', 'C:\\wamp\\www\\45\\...', 692)
#1 \applications\convert\sources\Library.php(285): IPS\convert\Software\Core\_Invisioncommunity->convertMembers()
#2 \applications\convert\modules\admin\manage\convert.php(559): IPS\convert\_Library->process(NULL, 'convertMembers', 100)
#3 \system\Helpers\MultipleRedirect\MultipleRedirect.php(93): IPS\convert\modules\admin\manage\_convert->IPS\convert\modules\admin\manage\{closure}(NULL)
#4 \applications\convert\modules\admin\manage\convert.php(579): IPS\Helpers\_MultipleRedirect->__construct(Object(IPS\Http\Url\Internal), Object(Closure), Object(Closure))
#5 \system\Dispatcher\Controller.php(107): IPS\convert\modules\admin\manage\_convert->runStep()
#6 \applications\convert\modules\admin\manage\convert.php(45): IPS\Dispatcher\_Controller->execute()
#7 \system\Dispatcher\Dispatcher.php(153): IPS\convert\modules\admin\manage\_convert->execute()
#8 \admin\index.php(13): IPS\_Dispatcher->run()
#9 {main}
I've fixed it by changing that line:
$libraryClass->convertMember( $row, $profileFields, $profilePhotoName, $path . ( isset( $bits ) ? $bits[0] : '' ), NULL, $coverPhotoName, $path . ( isset( $coverBits[0] ) ? $coverBits[0] : '' ) );
Into:
$libraryClass->convertMember( $row, $profileFields, $profilePhotoName, $path . ( isset( $bits[0] ) ? $bits[0] : '' ), NULL, $coverPhotoName, $path . ( isset( $coverBits[0] ) ? $coverBits[0] : '' ) );
I'm not sure if it's enough or not, but I want to report it anyway.