mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
Fix hard-coded boolean in CsvBulkLoader
This commit is contained in:
parent
0821310207
commit
3fca7b3c4d
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user