add diaspora support to dfrn_confirm (friendship confirmation)

This commit is contained in:
Friendika 2011-08-14 05:23:36 -07:00
parent 1b8adf0f12
commit fcf6651299
1 changed files with 13 additions and 9 deletions

View File

@ -124,6 +124,8 @@ function dfrn_confirm_post(&$a,$handsfree = null) {
$aes_allow = $contact['aes_allow'];
$network = ((strlen($contact['issued-id'])) ? 'dfrn' : 'stat');
if($contact['network'])
$network = $contact['network'];
if($network === 'dfrn') {
@ -339,9 +341,10 @@ function dfrn_confirm_post(&$a,$handsfree = null) {
else {
// $network !== 'dfrn'
$notify = '';
$poll = '';
$notify = (($contact['notify']) ? $contact['notify'] : '');
$poll = (($contact['poll']) ? $contact['poll'] : '');
if((! $contact['notify']) || (! $contact['poll'])) {
$arr = lrdd($contact['url']);
if(count($arr)) {
foreach($arr as $link) {
@ -351,6 +354,7 @@ function dfrn_confirm_post(&$a,$handsfree = null) {
$poll = $link['@attributes']['href'];
}
}
}
$r = q("DELETE FROM `intro` WHERE `id` = %d AND `uid` = %d LIMIT 1",
intval($intro_id),