mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-09 20:52:56 +01:00
Fix for CSV import
This commit is contained in:
parent
0b9d555f99
commit
570e72c083
@ -812,7 +812,9 @@ class ImportService
|
||||
continue;
|
||||
}
|
||||
|
||||
$obj->$field = $data[$index];
|
||||
if (isset($data[$index])) {
|
||||
$obj->$field = $data[$index];
|
||||
}
|
||||
}
|
||||
|
||||
return $obj;
|
||||
|
Loading…
Reference in New Issue
Block a user