From e0a18143adc1029c4579fe46612b49fb070328db Mon Sep 17 00:00:00 2001 From: Isaac Connor Date: Tue, 5 Dec 2017 15:20:15 -0800 Subject: [PATCH] include Group Id in list --- web/skins/classic/views/groups.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/skins/classic/views/groups.php b/web/skins/classic/views/groups.php index c78b7f58a..7301020b9 100644 --- a/web/skins/classic/views/groups.php +++ b/web/skins/classic/views/groups.php @@ -68,7 +68,7 @@ function group_line( $Group ) { $html .= ' '; $html .= ''; if ( canEdit('Groups') ) { - $html .= ''. validHtmlStr($Group->Name()).''; + $html .= ''. validHtmlStr($Group->Id() . ' ' . $Group->Name()).''; } else { $html .= validHtmlStr($Group->Name()); }