From 8dfe78b8bfd5d89dc3f4d8ff7a23a0ec072ba073 Mon Sep 17 00:00:00 2001 From: Thomas Gelf Date: Fri, 26 Jan 2018 13:04:32 +0100 Subject: [PATCH] ImportSource: reject by key refs #1369 --- library/Director/Objects/ImportSource.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/Director/Objects/ImportSource.php b/library/Director/Objects/ImportSource.php index 49c78527..3d395e85 100644 --- a/library/Director/Objects/ImportSource.php +++ b/library/Director/Objects/ImportSource.php @@ -100,7 +100,7 @@ class ImportSource extends DbObjectWithSettings foreach ($data as $key => &$row) { $this->applyModifiersToRow($row); if (null === $row) { - $rejected[] = $row; + $rejected[] = $key; } } }