mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-02-23 22:01:47 +01:00
fixed historylog widget to correct display custom fields of type link to application
This commit is contained in:
parent
47e6f766ff
commit
0bea53b22d
@ -199,7 +199,14 @@ class historylog_widget
|
||||
|
||||
if(!is_array($cf_data['values']) || !$cf_data['values'])
|
||||
{
|
||||
self::$status_widgets['#'.$cf_name] = $cf_data['type'] != 'text' ? $cf_data['type'] : 'label';
|
||||
if (isset($GLOBALS['egw_info']['apps'][$cf_data['type']]))
|
||||
{
|
||||
self::$status_widgets['#'.$cf_name] = 'link-entry:'.$cf_data['type'];
|
||||
}
|
||||
else
|
||||
{
|
||||
self::$status_widgets['#'.$cf_name] = $cf_data['type'] != 'text' ? $cf_data['type'] : 'label';
|
||||
}
|
||||
}
|
||||
elseif($cf_data['values']['@'])
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user