mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-07 16:44:07 +01:00
Fix customfields of type home-accounts not being converted
This commit is contained in:
parent
6270bc83f9
commit
89f7ced72d
@ -264,7 +264,8 @@ class importexport_export_csv implements importexport_iface_export_record
|
||||
$selects[$name] = $c_field['values'];
|
||||
break;
|
||||
default:
|
||||
if(in_array($c_field['type'], array_keys($GLOBALS['egw_info']['apps']))) {
|
||||
list($type) = explode('-',$c_field['type'],2);
|
||||
if(in_array($type, array_keys($GLOBALS['egw_info']['apps']))) {
|
||||
$fields['links'][] = $name;
|
||||
$links[$name] = $c_field['type'];
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user