X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fcrepair.php;h=754078316fba9c0d9c5d99477a14e62348f2cdb5;hb=09667dd82bbb9bb23a4ad8d86c1e9f3146665aa5;hp=3abbe343b26d0d09709fe0bcd9f3e47a50ab9757;hpb=18a35e9ceb5e714008170ab6b8308f57f0f7e200;p=friendica.git diff --git a/mod/crepair.php b/mod/crepair.php index 3abbe343b2..754078316f 100644 --- a/mod/crepair.php +++ b/mod/crepair.php @@ -1,10 +1,17 @@ data['contact'] = $r[0]; $contact = $r[0]; - profile_load($a, "", 0, get_contact_details_by_url($contact["url"])); + profile_load($a, "", 0, Contact::getDetailsByURL($contact["url"])); } } - -function crepair_post(&$a) { - if(! local_user()) +function crepair_post(App $a) { + if (! local_user()) { return; + } $cid = (($a->argc > 1) ? intval($a->argv[1]) : 0); @@ -43,8 +50,9 @@ function crepair_post(&$a) { ); } - if(! count($r)) + if (! DBM::is_result($r)) { return; + } $contact = $r[0]; @@ -94,9 +102,9 @@ function crepair_post(&$a) { -function crepair_content(&$a) { +function crepair_content(App $a) { - if(! local_user()) { + if (! local_user()) { notice( t('Permission denied.') . EOL); return; } @@ -110,7 +118,7 @@ function crepair_content(&$a) { ); } - if(! count($r)) { + if (! DBM::is_result($r)) { notice( t('Contact not found.') . EOL); return; } @@ -122,7 +130,7 @@ function crepair_content(&$a) { $returnaddr = "contacts/$cid"; - $allow_remote_self = get_config('system','allow_users_remote_self'); + $allow_remote_self = Config::get('system','allow_users_remote_self'); // Disable remote self for everything except feeds. // There is an issue when you repeat an item from maybe twitter and you got comments from friendica and twitter