X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fprofperm.php;h=218d1973eea101f332d362a19e50db9942b7bc6c;hb=4a47425bfd64f5ba04139899880fce21ddcc0623;hp=4ee933e6cbecea30c696b37722aefdaa42f20aae;hpb=e06fc2aa6900d8cf5ae4e8d5cf52f9262bf7ada7;p=friendica.git diff --git a/mod/profperm.php b/mod/profperm.php index 4ee933e6cb..218d1973ee 100644 --- a/mod/profperm.php +++ b/mod/profperm.php @@ -7,12 +7,13 @@ use Friendica\Core\Config; use Friendica\Core\L10n; use Friendica\Core\PConfig; use Friendica\Core\Protocol; +use Friendica\Content\Text\HTML; use Friendica\Database\DBA; use Friendica\Model\Profile; function profperm_init(App $a) { - if (! local_user()) { + if (!local_user()) { return; } @@ -25,7 +26,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 +46,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 +65,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 +83,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 +121,7 @@ function profperm_content(App $a) { } $o .= '
'; - if($change) + if (!empty($change)) $o = ''; $o .= '
'; @@ -131,9 +132,9 @@ function profperm_content(App $a) { $textmode = (($switchtotext && (count($members) > $switchtotext)) ? true : false); foreach($members as $member) { - if($member['url']) { + if ($member['url']) { $member['click'] = 'profChangeMember(' . $profile['id'] . ',' . $member['id'] . '); return true;'; - $o .= micropro($member,true,'mpprof', $textmode); + $o .= HTML::micropro($member,true,'mpprof', $textmode); } } $o .= '
'; @@ -153,18 +154,18 @@ function profperm_content(App $a) { if (DBA::isResult($r)) { $textmode = (($switchtotext && (count($r) > $switchtotext)) ? true : false); foreach($r as $member) { - if(! in_array($member['id'],$ingroup)) { + if (!in_array($member['id'],$ingroup)) { $member['click'] = 'profChangeMember(' . $profile['id'] . ',' . $member['id'] . '); return true;'; - $o .= micropro($member,true,'mpprof',$textmode); + $o .= HTML::micropro($member,true,'mpprof',$textmode); } } } $o .= '
'; - if($change) { + if (!empty($change)) { echo $o; - killme(); + exit(); } $o .= ''; return $o;