mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 12:05:37 +00:00
Merge pull request #6367 from colintucker/6363-fix-csv-bulk-loader
FIX hard-coded boolean in CsvBulkLoader (fixes #6363)
This commit is contained in:
commit
e191bc875f
@ -70,7 +70,7 @@ class CsvBulkLoader extends BulkLoader {
|
|||||||
foreach ($files as $file) {
|
foreach ($files as $file) {
|
||||||
$last = $file;
|
$last = $file;
|
||||||
|
|
||||||
$next = $this->processChunk($file, false);
|
$next = $this->processChunk($file, $preview);
|
||||||
|
|
||||||
if ($result instanceof BulkLoader_Result) {
|
if ($result instanceof BulkLoader_Result) {
|
||||||
$result->merge($next);
|
$result->merge($next);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user