diff options
author | Friendika <info@friendika.com> | 2011-07-01 06:26:46 -0700 |
---|---|---|
committer | Friendika <info@friendika.com> | 2011-07-01 06:26:46 -0700 |
commit | 813d6c453ceefe284c8736fa4d8038e9d1eebcb2 (patch) | |
tree | 908a376020171cac6bb6ded1a6b80dc69538792a | |
parent | f53a2d6da95e88573c4a8e36d40f1c9327490025 (diff) | |
download | volse-hubzilla-813d6c453ceefe284c8736fa4d8038e9d1eebcb2.tar.gz volse-hubzilla-813d6c453ceefe284c8736fa4d8038e9d1eebcb2.tar.bz2 volse-hubzilla-813d6c453ceefe284c8736fa4d8038e9d1eebcb2.zip |
missed block
-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>"; |