Summary:
incomplete string explode
Detailed Description:
Function smart_explode() in class.cge_array.php fails to return the last array
item, when that item is empty. This caused a website crash, when importing
frontenduser data.
The following extract from the function code is the core of the problem.
Removing the condition fixed the crash.
if( strlen($col) != 0 )
{
$out[] = $col;
}