diff --git a/importexport/inc/class.importexport_definition.inc.php b/importexport/inc/class.importexport_definition.inc.php index 2b7500b929..37f4b75310 100644 --- a/importexport/inc/class.importexport_definition.inc.php +++ b/importexport/inc/class.importexport_definition.inc.php @@ -83,7 +83,7 @@ class importexport_definition implements importexport_iface_egw_record { try { $options_data = importexport_arrayxml::xml2array( $this->definition['plugin_options'] ); - $this->definition['plugin_options'] = $options_data['root']; + $this->definition['plugin_options'] = (array)$options_data['root']; if($this->definition['filter']) $filter = importexport_arrayxml::xml2array( $this->definition['filter'] ); $this->definition['filter'] = $filter['root']; }