X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fcrepair.php;h=7e1921f304124539d84a3114e5c6cbfd27c6b90b;hb=de4a2e6fd03cd0aab94a256eba92ed593931534b;hp=a73429e157e3f7b918c983d302a86b89bfb4d586;hpb=2ad162f991fdd32122b029398b9ab9e8801c0462;p=friendica.git diff --git a/mod/crepair.php b/mod/crepair.php index a73429e157..7e1921f304 100644 --- a/mod/crepair.php +++ b/mod/crepair.php @@ -1,11 +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"])); } } @@ -83,18 +86,17 @@ function crepair_post(App $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; }