forked from extern/egroupware
Import/Export: Avoid "Undefined variable: filter" error
Correct files this time
This commit is contained in:
parent
c853bb0f84
commit
a7d52168b7
@ -93,8 +93,11 @@ class importexport_definition implements importexport_iface_egw_record {
|
||||
{
|
||||
$options_data = importexport_arrayxml::xml2array( $this->definition['plugin_options'] );
|
||||
$this->definition['plugin_options'] = (array)$options_data['root'];
|
||||
if($this->definition['filter']) $filter = importexport_arrayxml::xml2array( $this->definition['filter'] );
|
||||
$this->definition['filter'] = $filter['root'];
|
||||
if($this->definition['filter'])
|
||||
{
|
||||
$filter = importexport_arrayxml::xml2array( $this->definition['filter'] );
|
||||
$this->definition['filter'] = $filter['root'];
|
||||
}
|
||||
}
|
||||
catch (Throwable $e)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user