diff options
author | friendica <info@friendica.com> | 2012-05-17 22:44:52 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-05-17 22:44:52 -0700 |
commit | 7b0ded3f1478553e1fe93c95c272b99d78f0132b (patch) | |
tree | 2afc3fccae7d3f698ad89dc7c77386ac93890080 /include/diaspora.php | |
parent | 7cfa7a7671f0bf8316bc63912452e156fc48129e (diff) | |
download | volse-hubzilla-7b0ded3f1478553e1fe93c95c272b99d78f0132b.tar.gz volse-hubzilla-7b0ded3f1478553e1fe93c95c272b99d78f0132b.tar.bz2 volse-hubzilla-7b0ded3f1478553e1fe93c95c272b99d78f0132b.zip |
more private forums, default privacy group for new contacts
Diffstat (limited to 'include/diaspora.php')
-rw-r--r-- | include/diaspora.php | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/include/diaspora.php b/include/diaspora.php index 2051de5fc..3f2cdf8e4 100644 --- a/include/diaspora.php +++ b/include/diaspora.php @@ -569,6 +569,14 @@ function diaspora_request($importer,$xml) { return; } + $g = q("select def_gid from user where uid = %d limit 1", + intval($importer['uid']) + ); + if($g && intval($g[0]['def_gid'])) { + require_once('include/group.php'); + group_add_member($importer['uid'],'',$contact_record['id'],$g[0]['def_gid']); + } + if($importer['page-flags'] == PAGE_NORMAL) { $hash = random_string() . (string) time(); // Generate a confirm_key |