aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorFriendika <info@friendika.com>2011-04-12 18:22:58 -0700
committerFriendika <info@friendika.com>2011-04-12 18:22:58 -0700
commitf04e2e70447e433bdc6acb2094fd988a995d1c08 (patch)
treeb461766e1772ffcce4427549380404eb867de491 /include
parent5654ce926ca012acd9f725c8c7d6e32609a17646 (diff)
downloadvolse-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.php4
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>";