mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-01-23 06:19:09 +01:00
fixed new eTemplate using InfoLog admin no longer stores multiple types as array, but comma-separated
This commit is contained in:
parent
ee9f0eacf8
commit
645b17824d
@ -889,7 +889,8 @@ class infolog_so
|
||||
if (is_null($index_load_cfs) && $query['col_filter']['info_type'])
|
||||
{
|
||||
$config_data = config::read('infolog');
|
||||
$index_load_cfs = (array)$config_data['index_load_cfs'];
|
||||
$index_load_cfs = $config_data['index_load_cfs'];
|
||||
if (!is_array($index_load_cfs)) $index_load_cfs = explode(',', $index_load_cfs);
|
||||
}
|
||||
// if no specific custom field is selected, show/query all custom fields
|
||||
if ($ids && ($query['custom_fields'] || $query['csv_export'] ||
|
||||
|
Loading…
Reference in New Issue
Block a user