forked from extern/egroupware
Avoid some more PHP8 errors
An error happened! (TypeError): Cannot access offset of type string on string
This commit is contained in:
parent
f8fd87cd1d
commit
7502749ef1
@ -282,12 +282,19 @@ class importexport_wizard_basic_export_csv
|
|||||||
unset ($preserv['button']);
|
unset ($preserv['button']);
|
||||||
|
|
||||||
$content['set_filter']['fields'] = importexport_helper_functions::get_filter_fields(
|
$content['set_filter']['fields'] = importexport_helper_functions::get_filter_fields(
|
||||||
$content['application'],$content['plugin'],$this
|
$content['application'], $content['plugin'], $this
|
||||||
);
|
);
|
||||||
// Load existing filter from either content or definition
|
// Load existing filter from either content or definition
|
||||||
|
if(!array_key_exists('filter', $content) || !is_array($content['filter']))
|
||||||
|
{
|
||||||
|
$content['filter'] = [];
|
||||||
|
}
|
||||||
foreach($content['set_filter']['fields'] as $field => $settings)
|
foreach($content['set_filter']['fields'] as $field => $settings)
|
||||||
{
|
{
|
||||||
$content['set_filter'][$field] = $content['filter'][$field];
|
if(array_key_exists($field, $content['filter']))
|
||||||
|
{
|
||||||
|
$content['set_filter'][$field] = $content['filter'][$field];
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if(!$content['set_filter']['fields'])
|
if(!$content['set_filter']['fields'])
|
||||||
|
Loading…
Reference in New Issue
Block a user