Merge pull request #6367 from colintucker/6363-fix-csv-bulk-loader

FIX hard-coded boolean in CsvBulkLoader (fixes #6363)
This commit is contained in:
Loz Calver 2016-12-06 09:42:06 +00:00 committed by GitHub
commit e191bc875f

View File

@ -70,7 +70,7 @@ class CsvBulkLoader extends BulkLoader {
foreach ($files as $file) {
$last = $file;
$next = $this->processChunk($file, false);
$next = $this->processChunk($file, $preview);
if ($result instanceof BulkLoader_Result) {
$result->merge($next);