diff options
author | friendica <info@friendica.com> | 2012-04-30 04:11:42 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-04-30 04:11:42 -0700 |
commit | 5d10672fb84e467a09c31cc06a21cc10d4082a48 (patch) | |
tree | 01e70f6661fdd2c630c108621c0fc56a91687d1a /mod/dfrn_request.php | |
parent | 9f18c9d664d44ce4d2bfe092bf1a8a154d31ac5f (diff) | |
download | volse-hubzilla-5d10672fb84e467a09c31cc06a21cc10d4082a48.tar.gz volse-hubzilla-5d10672fb84e467a09c31cc06a21cc10d4082a48.tar.bz2 volse-hubzilla-5d10672fb84e467a09c31cc06a21cc10d4082a48.zip |
fix join group notifications
Diffstat (limited to 'mod/dfrn_request.php')
-rw-r--r-- | mod/dfrn_request.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/mod/dfrn_request.php b/mod/dfrn_request.php index 18798aa15..2169c494c 100644 --- a/mod/dfrn_request.php +++ b/mod/dfrn_request.php @@ -700,7 +700,8 @@ function dfrn_request_content(&$a) { 'node' => $r[0]['nickname'], 'dfrn_id' => $r[0]['issued-id'], 'intro_id' => $intro[0]['id'], - 'duplex' => (($r[0]['page-flags'] == PAGE_FREELOVE) ? 1 : 0) + 'duplex' => (($r[0]['page-flags'] == PAGE_FREELOVE) ? 1 : 0), + 'activity' => intval(get_pconfig($r[0]['uid'],'system','post_newfriend')) ); dfrn_confirm_post($a,$handsfree); } |