include Group Id in list

pull/2077/head
Isaac Connor 2017-12-05 15:20:15 -08:00
parent 6b2eb89a61
commit e0a18143ad
1 changed files with 1 additions and 1 deletions

View File

@ -68,7 +68,7 @@ function group_line( $Group ) {
$html .= '<td class="colName">&nbsp;</td>';
$html .= '<td class="colName" colspan="'.($max_depth-($Group->depth()-1)).'">';
if ( canEdit('Groups') ) {
$html .= '<a href="#" onclick="editGroup('.$Group->Id().');">'. validHtmlStr($Group->Name()).'</a>';
$html .= '<a href="#" onclick="editGroup('.$Group->Id().');">'. validHtmlStr($Group->Id() . ' ' . $Group->Name()).'</a>';
} else {
$html .= validHtmlStr($Group->Name());
}