diff --git a/mod/match.php b/mod/match.php index c4bea6767..caa4c944c 100644 --- a/mod/match.php +++ b/mod/match.php @@ -94,11 +94,11 @@ function match_content(App $a) $entry = [ 'url' => Contact::magicLink($jj->url), - 'itemurl' => (($contact_details['addr'] != "") ? $contact_details['addr'] : $jj->url), + 'itemurl' => defaults($contact_details, 'addr', $jj->url), 'name' => $jj->name, - 'details' => $contact_details['location'], - 'tags' => $contact_details['keywords'], - 'about' => $contact_details['about'], + 'details' => defaults($contact_details, 'location', ''), + 'tags' => defaults($contact_details, 'keywords', ''), + 'about' => defaults($contact_details, 'about', ''), 'account_type' => Contact::getAccountType($contact_details), 'thumb' => ProxyUtils::proxifyUrl($jj->photo, false, ProxyUtils::SIZE_THUMB), 'inttxt' => ' ' . L10n::t('is interested in:'), diff --git a/mod/profperm.php b/mod/profperm.php index 4ee933e6c..ee5e2f23d 100644 --- a/mod/profperm.php +++ b/mod/profperm.php @@ -12,7 +12,7 @@ use Friendica\Model\Profile; function profperm_init(App $a) { - if (! local_user()) { + if (!local_user()) { return; } @@ -25,7 +25,7 @@ function profperm_init(App $a) function profperm_content(App $a) { - if (! local_user()) { + if (!local_user()) { notice(L10n::t('Permission denied') . EOL); return; } @@ -45,7 +45,7 @@ function profperm_content(App $a) { $switchtotext = Config::get('system','groupedit_image_limit', 400); } - if(($a->argc > 2) && intval($a->argv[1]) && intval($a->argv[2])) { + if (($a->argc > 2) && intval($a->argv[1]) && intval($a->argv[2])) { $r = q("SELECT `id` FROM `contact` WHERE `blocked` = 0 AND `pending` = 0 AND `self` = 0 AND `network` = '%s' AND `id` = %d AND `uid` = %d LIMIT 1", DBA::escape(Protocol::DFRN), @@ -64,7 +64,7 @@ function profperm_content(App $a) { intval($a->argv[1]), intval(local_user()) ); - if (! DBA::isResult($r)) { + if (!DBA::isResult($r)) { notice(L10n::t('Invalid profile identifier.') . EOL ); return; } @@ -82,8 +82,8 @@ function profperm_content(App $a) { $members = $r; - if($change) { - if(in_array($change,$ingroup)) { + if (!empty($change)) { + if (in_array($change,$ingroup)) { q("UPDATE `contact` SET `profile-id` = 0 WHERE `id` = %d AND `uid` = %d", intval($change), intval(local_user()) @@ -120,7 +120,7 @@ function profperm_content(App $a) { } $o .= '
" . $event_end . "
"; } - if (strlen($event['location'])) { + if (!empty($event['location'])) { $o .= "" . BBCode::convert($event['location'], false, $simple) . "
"; }