Fix no category showed blank tag in category taglist.

This commit is contained in:
Nathan Gray 2016-04-04 21:40:45 +00:00
parent d02a1d31a6
commit 3ecd30fb35

View File

@ -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),