Add missing fclose method for exported csv

[MAILPOET-3376]
This commit is contained in:
Jan Lysý
2021-03-02 17:27:41 +01:00
committed by Veljko V
parent 8cbf06e775
commit abdcbb245a

View File

@ -136,7 +136,7 @@ class Export {
fwrite($cSVFile, implode(',', array_map($formatCSV, $row)) . "\n");
}
}
fclose($cSVFile);
return $processedSubscribers;
}