From 5ecaeb8e5c9fb01ee768df2a650d2187d971b105 Mon Sep 17 00:00:00 2001 From: friendica Date: Fri, 18 May 2012 01:03:46 -0700 Subject: [PATCH] catch more places to apply default group --- mod/dfrn_confirm.php | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/mod/dfrn_confirm.php b/mod/dfrn_confirm.php index 2b25095fde..227d72cbfb 100644 --- a/mod/dfrn_confirm.php +++ b/mod/dfrn_confirm.php @@ -500,6 +500,16 @@ function dfrn_confirm_post(&$a,$handsfree = null) { } } } + + + $g = q("select def_gid from user where uid = %d limit 1", + intval($uid) + ); + if($contact && $g && intval($g[0]['def_gid'])) { + require_once('include/group.php'); + group_add_member($uid,'',$contact[0]['id'],$g[0]['def_gid']); + } + // Let's send our user to the contact editor in case they want to // do anything special with this new friend. -- 2.39.2