diff options
author | Friendika <info@friendika.com> | 2011-04-12 18:22:58 -0700 |
---|---|---|
committer | Friendika <info@friendika.com> | 2011-04-12 18:22:58 -0700 |
commit | f04e2e70447e433bdc6acb2094fd988a995d1c08 (patch) | |
tree | b461766e1772ffcce4427549380404eb867de491 /include | |
parent | 5654ce926ca012acd9f725c8c7d6e32609a17646 (diff) | |
download | volse-hubzilla-f04e2e70447e433bdc6acb2094fd988a995d1c08.tar.gz volse-hubzilla-f04e2e70447e433bdc6acb2094fd988a995d1c08.tar.bz2 volse-hubzilla-f04e2e70447e433bdc6acb2094fd988a995d1c08.zip |
edit group links on network page
Diffstat (limited to 'include')
-rw-r--r-- | include/group.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/group.php b/include/group.php index 5001cf53e..065c2241f 100644 --- a/include/group.php +++ b/include/group.php @@ -135,7 +135,7 @@ function group_public_members($gid) { -function group_side($every="contacts",$each="group") { +function group_side($every="contacts",$each="group",$edit = false) { $o = ''; @@ -165,7 +165,7 @@ EOT; ); if(count($r)) { foreach($r as $rr) - $o .= " <li class=\"sidebar-group-li\"><a href=\"$each/{$rr['id']}\">{$rr['name']}</a></li>\r\n"; + $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']}\">{$rr['name']}</a></li>\r\n"; } $o .= " </ul>\r\n </div>\r\n</div>"; |