mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-01-13 09:28:29 +01:00
Don't put spaces between category IDs when exporting DB values
This commit is contained in:
parent
2d20b29cee
commit
6a58d3c612
@ -288,7 +288,7 @@ class addressbook_export_contacts_csv implements importexport_iface_export_plugi
|
||||
}
|
||||
$record->$field_name = $record_value;
|
||||
}
|
||||
if(is_array($record->$field_name)) $record->$field_name = implode(', ', $record->$field_name);
|
||||
if(is_array($record->$field_name)) $record->$field_name = implode(($options['convert'] ? ', ' : ','), $record->$field_name);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user