mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-02-16 18:31:26 +01:00
Import/export: Fix definition wizard does not always save field mapping
This commit is contained in:
parent
6aca684905
commit
86aa99aa55
@ -325,10 +325,11 @@ class importexport_wizard_basic_import_csv
|
|||||||
foreach($content['csv_fields'] as $index => $title)
|
foreach($content['csv_fields'] as $index => $title)
|
||||||
{
|
{
|
||||||
$content['mapping'][] = array(
|
$content['mapping'][] = array(
|
||||||
'index' => $index,
|
'index' => $index,
|
||||||
'title' => $title,
|
'title' => $title,
|
||||||
'field' => $field[$index],
|
// Make sure the field is not null, or auto-repeat will skip the row
|
||||||
'conversion' => $conversion[$index]
|
'field' => $field[$index] ?: '',
|
||||||
|
'conversion' => $conversion[$index]
|
||||||
);
|
);
|
||||||
if(strstr($title,lang('Extra %1'))) $empties++;
|
if(strstr($title,lang('Extra %1'))) $empties++;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user