X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;ds=sidebyside;f=mod%2Fcrepair.php;h=754078316fba9c0d9c5d99477a14e62348f2cdb5;hb=09667dd82bbb9bb23a4ad8d86c1e9f3146665aa5;hp=c5b4983d5bdadbee07556dd1b38eefbbd3afda96;hpb=5a6da8b447430174ae231a3b8203fd4bd8416cc1;p=friendica.git diff --git a/mod/crepair.php b/mod/crepair.php index c5b4983d5b..754078316f 100644 --- a/mod/crepair.php +++ b/mod/crepair.php @@ -1,6 +1,12 @@ argc == 2) && intval($a->argv[1])) { + if(($a->argc == 2) && intval($a->argv[1])) { $contact_id = intval($a->argv[1]); $r = q("SELECT * FROM `contact` WHERE `uid` = %d and `id` = %d LIMIT 1", intval(local_user()), intval($contact_id) ); - if (! dbm::is_result($r)) { + if (! DBM::is_result($r)) { $contact_id = 0; } } - if (! x($a->page,'aside')) { + if(! x($a->page,'aside')) $a->page['aside'] = ''; - } - if ($contact_id) { + if($contact_id) { $a->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"])); } } @@ -36,19 +41,16 @@ function crepair_post(App $a) { return; } - // Init $r here if $cid is not set - $r = false; - $cid = (($a->argc > 1) ? intval($a->argv[1]) : 0); - if ($cid) { + if($cid) { $r = q("SELECT * FROM `contact` WHERE `id` = %d AND `uid` = %d LIMIT 1", intval($cid), intval(local_user()) ); } - if (! dbm::is_result($r)) { + if (! DBM::is_result($r)) { return; } @@ -82,18 +84,18 @@ 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']); } - if ($r) { + if($r) info( t('Contact settings applied.') . EOL); - } else { + else notice( t('Contact update failed.') . EOL); - } + return; } @@ -109,14 +111,14 @@ function crepair_content(App $a) { $cid = (($a->argc > 1) ? intval($a->argv[1]) : 0); - if ($cid) { + if($cid) { $r = q("SELECT * FROM `contact` WHERE `id` = %d AND `uid` = %d LIMIT 1", intval($cid), intval(local_user()) ); } - if (! dbm::is_result($r)) { + if (! DBM::is_result($r)) { notice( t('Contact not found.') . EOL); return; } @@ -128,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