mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-07 08:34:42 +01:00
Implode arrays when not exporting human-friendly values so they don't say 'Array'
This commit is contained in:
parent
0df9ee0c6d
commit
852497c4f6
@ -66,7 +66,13 @@ class resources_export_csv implements importexport_iface_export_plugin {
|
||||
$resource->set_record($record);
|
||||
if($options['convert']) {
|
||||
importexport_export_csv::convert($resource, $types, 'resources');
|
||||
}
|
||||
} else {
|
||||
// Implode arrays, so they don't say 'Array'
|
||||
foreach($resource->get_record_array() as $key => $value) {
|
||||
if(is_array($value)) $resource->$key = implode(',', $value);
|
||||
}
|
||||
}
|
||||
|
||||
$export_object->export_record($resource);
|
||||
unset($resource);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user