From: Friendika Date: Wed, 13 Apr 2011 01:22:58 +0000 (-0700) Subject: edit group links on network page X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=f04e2e70447e433bdc6acb2094fd988a995d1c08;p=friendica.git edit group links on network page --- diff --git a/images/spencil.gif b/images/spencil.gif new file mode 100644 index 0000000000..0a2551ac08 Binary files /dev/null and b/images/spencil.gif differ diff --git a/include/group.php b/include/group.php index 5001cf53ec..065c2241fe 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 .= "
  • {$rr['name']}
  • \r\n"; + $o .= ' \r\n"; } $o .= " \r\n \r\n"; diff --git a/mod/network.php b/mod/network.php index 35b6a299b2..f0a071cbfa 100644 --- a/mod/network.php +++ b/mod/network.php @@ -21,7 +21,7 @@ function network_init(&$a) { $a->page['aside'] .= ''; - $a->page['aside'] .= group_side('network','network'); + $a->page['aside'] .= group_side('network','network',true); }