aboutsummaryrefslogtreecommitdiffstats
path: root/include/group.php
diff options
context:
space:
mode:
authorFriendika <info@friendika.com>2011-07-01 06:26:46 -0700
committerFriendika <info@friendika.com>2011-07-01 06:26:46 -0700
commit813d6c453ceefe284c8736fa4d8038e9d1eebcb2 (patch)
tree908a376020171cac6bb6ded1a6b80dc69538792a /include/group.php
parentf53a2d6da95e88573c4a8e36d40f1c9327490025 (diff)
downloadvolse-hubzilla-813d6c453ceefe284c8736fa4d8038e9d1eebcb2.tar.gz
volse-hubzilla-813d6c453ceefe284c8736fa4d8038e9d1eebcb2.tar.bz2
volse-hubzilla-813d6c453ceefe284c8736fa4d8038e9d1eebcb2.zip
missed block
Diffstat (limited to 'include/group.php')
-rw-r--r--include/group.php3
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>";