X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fcrepair.php;h=7e1921f304124539d84a3114e5c6cbfd27c6b90b;hb=de4a2e6fd03cd0aab94a256eba92ed593931534b;hp=59b92df0a7d0d8c48a6f0acbaa2d8cb6894e0072;hpb=6b6e3e264f55705d47f20cf32213d8d0f0d24efc;p=friendica.git diff --git a/mod/crepair.php b/mod/crepair.php index 59b92df0a7..7e1921f304 100644 --- a/mod/crepair.php +++ b/mod/crepair.php @@ -1,8 +1,16 @@ 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) { +function crepair_post(App $a) { if (! local_user()) { return; } @@ -44,7 +52,7 @@ function crepair_post(&$a) { ); } - if (! dbm::is_result($r)) { + if (! DBM::is_result($r)) { return; } @@ -78,25 +86,24 @@ function crepair_post(&$a) { local_user() ); - if($photo) { + if ($photo) { logger('mod-crepair: updating photo from ' . $photo); - require_once("include/Photo.php"); - update_contact_avatar($photo,local_user(),$contact['id']); + Contact::updateAvatar($photo, local_user(), $contact['id']); } - if($r) - info( t('Contact settings applied.') . EOL); - else - notice( t('Contact update failed.') . EOL); - + if ($r) { + info(t('Contact settings applied.') . EOL); + } else { + notice(t('Contact update failed.') . EOL); + } return; } -function crepair_content(&$a) { +function crepair_content(App $a) { if (! local_user()) { notice( t('Permission denied.') . EOL); @@ -112,7 +119,7 @@ function crepair_content(&$a) { ); } - if (! dbm::is_result($r)) { + if (! DBM::is_result($r)) { notice( t('Contact not found.') . EOL); return; } @@ -124,7 +131,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