forked from extern/egroupware
fix PHP 8.0 TypeError: array_keys(): Argument #1 ($array) must be of type array, null given
This commit is contained in:
parent
b07d08a235
commit
3da9840ca9
@ -288,7 +288,7 @@ class importexport_export_csv implements importexport_iface_export_record
|
|||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
list($type) = explode('-',$c_field['type'],2);
|
list($type) = explode('-',$c_field['type'],2);
|
||||||
if(in_array($type, array_keys($GLOBALS['egw_info']['apps']))) {
|
if (in_array($type, array_keys($GLOBALS['egw_info']['apps'] ?? []))) {
|
||||||
$fields['links'][] = $name;
|
$fields['links'][] = $name;
|
||||||
$links[$name] = $c_field['type'];
|
$links[$name] = $c_field['type'];
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user