mirror of
https://git.code.sf.net/p/seeddms/code
synced 2025-10-14 21:11:33 +00:00
check if group was found when rendering groups
This commit is contained in:
parent
973ef339bb
commit
1eee3f1335
|
@ -93,7 +93,7 @@ function renderGroupData($colname, $objdata) { /* {{{ */
|
||||||
$gn = $kk[1];
|
$gn = $kk[1];
|
||||||
else
|
else
|
||||||
$gn = '1';
|
$gn = '1';
|
||||||
if($objdata['groups'][$gn])
|
if(!empty($objdata['groups'][$gn]))
|
||||||
$html .= $objdata['groups'][$gn]->getName();
|
$html .= $objdata['groups'][$gn]->getName();
|
||||||
return $html;
|
return $html;
|
||||||
} /* }}} */
|
} /* }}} */
|
||||||
|
|
Loading…
Reference in New Issue
Block a user