X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fdfrn_notify.php;h=d34c959f1f4dbd16094871e348de7cf7230be8a0;hb=288ad37c3c93bcc3f5f3409be095dba57deab7f4;hp=04500e89ad24e71d77da91562970d7367db7487f;hpb=9330a6994c1b9aee49a482efe32e84ca1a944c9b;p=friendica.git diff --git a/mod/dfrn_notify.php b/mod/dfrn_notify.php index 04500e89ad..d34c959f1f 100644 --- a/mod/dfrn_notify.php +++ b/mod/dfrn_notify.php @@ -1,13 +1,18 @@ argv[1]) ); - if(! count($r)) { + if (! dbm::is_result($r)) { logger('dfrn_notify: contact not found for dfrn_id ' . $dfrn_id); xml_status(3); //NOTREACHED @@ -117,7 +122,7 @@ function dfrn_notify_post(&$a) { if($dissolve == 1) { - /** + /* * Relationship is dissolved permanently */ @@ -209,15 +214,14 @@ function dfrn_notify_post(&$a) { logger('rino: decrypted data: ' . $data, LOGGER_DATA); } - $ret = local_delivery($importer,$data); + $ret = dfrn::import($data, $importer); xml_status($ret); // NOTREACHED } -} -if(! function_exists('dfrn_notify_content')) { -function dfrn_notify_content(&$a) { + +function dfrn_notify_content(App $a) { if(x($_GET,'dfrn_id')) { @@ -280,8 +284,9 @@ function dfrn_notify_content(&$a) { dbesc($a->argv[1]) ); - if(! count($r)) + if (! dbm::is_result($r)) { $status = 1; + } logger("Remote rino version: ".$rino_remote." for ".$r[0]["url"], LOGGER_DEBUG); @@ -340,5 +345,5 @@ function dfrn_notify_content(&$a) { killme(); } -} + }