X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fdfrn_confirm.php;h=51cd59c62fe100b203e6caf8683571725491318c;hb=0c9cc29a51941eb572bf16fd5489d0947d47d033;hp=5e0e5c85c5173197b6dd802ace0a6bc916cbedc2;hpb=7be0020da929ea44b1acfdd789adf374f0065d33;p=friendica.git diff --git a/mod/dfrn_confirm.php b/mod/dfrn_confirm.php index 5e0e5c85c5..51cd59c62f 100644 --- a/mod/dfrn_confirm.php +++ b/mod/dfrn_confirm.php @@ -15,6 +15,8 @@ */ require_once('include/enotify.php'); +require_once('include/group.php'); +require_once('include/Probe.php'); function dfrn_confirm_post(&$a,$handsfree = null) { @@ -355,7 +357,7 @@ function dfrn_confirm_post(&$a,$handsfree = null) { $poll = (($contact['poll']) ? $contact['poll'] : ''); if((! $contact['notify']) || (! $contact['poll'])) { - $arr = lrdd($contact['url']); + $arr = Probe::lrdd($contact['url']); if(count($arr)) { foreach($arr as $link) { if($link['@attributes']['rel'] === 'salmon') @@ -485,16 +487,14 @@ function dfrn_confirm_post(&$a,$handsfree = null) { $i = item_store($arr); if($i) - proc_run('php',"include/notifier.php","activity","$i"); + proc_run(PRIORITY_HIGH, "include/notifier.php", "activity", $i); } } } $def_gid = get_default_group($uid, $contact["network"]); - if($contact && intval($def_gid)) { - require_once('include/group.php'); + if($contact && intval($def_gid)) group_add_member($uid, '', $contact['id'], $def_gid); - } // Let's send our user to the contact editor in case they want to // do anything special with this new friend. @@ -784,7 +784,7 @@ function dfrn_confirm_post(&$a,$handsfree = null) { $i = item_store($arr); if($i) - proc_run('php',"include/notifier.php","activity","$i"); + proc_run(PRIORITY_HIGH, "include/notifier.php", "activity", $i); } }