check if group was found when rendering groups

This commit is contained in:
Uwe Steinmann 2020-09-06 07:32:08 +02:00
parent 973ef339bb
commit 1eee3f1335

View File

@ -93,7 +93,7 @@ function renderGroupData($colname, $objdata) { /* {{{ */
$gn = $kk[1];
else
$gn = '1';
if($objdata['groups'][$gn])
if(!empty($objdata['groups'][$gn]))
$html .= $objdata['groups'][$gn]->getName();
return $html;
} /* }}} */