mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-08 00:54:15 +01:00
Fix no category showed blank tag in category taglist.
This commit is contained in:
parent
d02a1d31a6
commit
3ecd30fb35
@ -1715,7 +1715,10 @@ class calendar_uiforms extends calendar_ui
|
||||
$readonlys['recur_interval'] = $readonlys['recur_data'] = true;
|
||||
}
|
||||
}
|
||||
$content['category'] = explode(',',$event['category']);
|
||||
if($content['category'] && !is_array($content['category']))
|
||||
{
|
||||
$content['category'] = explode(',',$event['category']);
|
||||
}
|
||||
// disabling the custom fields tab, if there are none
|
||||
$readonlys['tabs'] = array(
|
||||
'custom' => !count($this->bo->customfields),
|
||||
|
Loading…
Reference in New Issue
Block a user