From 8cdbd0e2a65cac16a5bad0fca1c3e2e5ec91e348 Mon Sep 17 00:00:00 2001 From: friendica Date: Thu, 21 Nov 2013 17:31:37 -0800 Subject: make default group for new connections work --- mod/connections.php | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'mod/connections.php') diff --git a/mod/connections.php b/mod/connections.php index a40a8fa90..ba5e8920e 100644 --- a/mod/connections.php +++ b/mod/connections.php @@ -129,6 +129,15 @@ function connections_post(&$a) { } if($new_friend) { + $channel = $a->get_channel(); + $default_group = $channel['channel_default_group']; + if($default_group) { + require_once('include/group.php'); + $g = group_rec_byhash(local_user(),$default_group); + if($g) + group_add_member(local_user(),'',$a->data['abook_xchan'],$g['id']); + } + // Check if settings permit ("post new friend activity" is allowed, and // friends in general or this friend in particular aren't hidden) // and send out a new friend activity -- cgit v1.2.3