Summary:
cge_array > strlen breaks script on null value
Detailed Description:
Hi,
when I try to export users from FEU, PHP complains about class.cge_array /
method "implode_quoted" / line 352
When there are sometimes NULL values, the script breaks and the export doesn't
work
Before :
if( strlen($values[$i]) != 0 ) $values[$i] = $quote.$values[$i].$quote;
After :
if (($values[$i] != null) && (strlen($values[$i]) != 0)) {
$values[$i] = $quote.$values[$i].$quote;
}
Now it exports in FEU. I hope this was the right solution, thanks