mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-06-22 19:01:43 +02:00
* Calendar - Fix exporting CSV from search results exported owner as participants
This commit is contained in:
parent
3e7ecbe692
commit
d76f467f94
@ -147,7 +147,15 @@ class calendar_export_csv implements importexport_iface_export_plugin {
|
|||||||
// Add in participants
|
// Add in participants
|
||||||
if($options['mapping']['participants'])
|
if($options['mapping']['participants'])
|
||||||
{
|
{
|
||||||
$event['participants'] = implode(", ",$this->bo->participants($event,true));
|
if(is_array($event['participants']))
|
||||||
|
{
|
||||||
|
$event['participants'] = implode(", ",$this->bo->participants($event,true));
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
// Getting results from list already has participants formatted
|
||||||
|
$event['participants'] = str_replace("\n", ' ', $event['participants']);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
if (is_array($event))
|
if (is_array($event))
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user