diff options
Diffstat (limited to 'include/group.php')
-rw-r--r-- | include/group.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/group.php b/include/group.php index 30a023d41..da4d41748 100644 --- a/include/group.php +++ b/include/group.php @@ -165,9 +165,10 @@ EOT; intval($_SESSION['uid']) ); if(count($r)) { - foreach($r as $rr) + foreach($r as $rr) { $selected = (($group_id == $rr['id']) ? ' class="group-selected" ' : ''); $o .= ' <li class="sidebar-group-li">' . (($edit) ? "<a href=\"group/{$rr['id']}\" title=\"" . t('Edit') . "\" ><img src=\"images/spencil.gif\" alt=\"" . t('Edit') . "\"></a> " : "") . "<a href=\"$each/{$rr['id']}\" $selected >{$rr['name']}</a></li>\r\n"; + } } $o .= " </ul>\r\n </div>\r\n</div>"; |