X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fcrepair.php;h=754078316fba9c0d9c5d99477a14e62348f2cdb5;hb=f22fe7118d52251dbd0898279ef078b797885ec4;hp=c141958e8b958778acddab4e78858f7f2fd5697d;hpb=20e71d21a6206c03f2137eb82edf8f8b3bc644f2;p=friendica.git diff --git a/mod/crepair.php b/mod/crepair.php index c141958e8b..754078316f 100644 --- a/mod/crepair.php +++ b/mod/crepair.php @@ -1,8 +1,14 @@ 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(App &$a) { +function crepair_post(App $a) { if (! local_user()) { return; } @@ -44,7 +50,7 @@ function crepair_post(App &$a) { ); } - if (! dbm::is_result($r)) { + if (! DBM::is_result($r)) { return; } @@ -96,7 +102,7 @@ function crepair_post(App &$a) { -function crepair_content(App &$a) { +function crepair_content(App $a) { if (! local_user()) { notice( t('Permission denied.') . EOL); @@ -112,7 +118,7 @@ function crepair_content(App &$a) { ); } - if (! dbm::is_result($r)) { + if (! DBM::is_result($r)) { notice( t('Contact not found.') . EOL); return; } @@ -124,7 +130,7 @@ function crepair_content(App &$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