X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fprofperm.php;h=a414d8947bf35369a819b9966239585468889b59;hb=221cfa8c22b724228ed24618569cabcae582d331;hp=37054fb7c2583f1304b06b3a378fade8ac1da983;hpb=09851331a9dc8601919cd0c9200686b92843d235;p=friendica.git diff --git a/mod/profperm.php b/mod/profperm.php index 37054fb7c2..a414d8947b 100644 --- a/mod/profperm.php +++ b/mod/profperm.php @@ -22,7 +22,7 @@ function profperm_content(App $a) { } - if ($a->argc < 2) { + if($a->argc < 2) { notice( t('Invalid profile identifier.') . EOL ); return; } @@ -30,13 +30,13 @@ function profperm_content(App $a) { // Switch to text mod interface if we have more than 'n' contacts or group members $switchtotext = get_pconfig(local_user(),'system','groupedit_image_limit'); - if ($switchtotext === false) + if($switchtotext === false) $switchtotext = get_config('system','groupedit_image_limit'); - if ($switchtotext === false) + if($switchtotext === false) $switchtotext = 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", dbesc(NETWORK_DFRN), @@ -48,7 +48,7 @@ function profperm_content(App $a) { } - if (($a->argc > 1) && (intval($a->argv[1]))) { + if(($a->argc > 1) && (intval($a->argv[1]))) { $r = q("SELECT * FROM `profile` WHERE `id` = %d AND `uid` = %d AND `is-default` = 0 LIMIT 1", intval($a->argv[1]), intval(local_user()) @@ -66,13 +66,13 @@ function profperm_content(App $a) { $ingroup = array(); if (dbm::is_result($r)) - foreach ($r as $member) + foreach($r as $member) $ingroup[] = $member['id']; $members = $r; - if ($change) { - if (in_array($change,$ingroup)) { + if($change) { + if(in_array($change,$ingroup)) { q("UPDATE `contact` SET `profile-id` = 0 WHERE `id` = %d AND `uid` = %d", intval($change), intval(local_user()) @@ -96,7 +96,7 @@ function profperm_content(App $a) { $ingroup = array(); if (dbm::is_result($r)) - foreach ($r as $member) + foreach($r as $member) $ingroup[] = $member['id']; } @@ -109,7 +109,7 @@ function profperm_content(App $a) { } $o .= '
'; - if ($change) + if($change) $o = ''; $o .= '
'; @@ -119,8 +119,8 @@ function profperm_content(App $a) { $textmode = (($switchtotext && (count($members) > $switchtotext)) ? true : false); - foreach ($members as $member) { - if ($member['url']) { + foreach($members as $member) { + if($member['url']) { $member['click'] = 'profChangeMember(' . $profile['id'] . ',' . $member['id'] . '); return true;'; $o .= micropro($member,true,'mpprof', $textmode); } @@ -141,8 +141,8 @@ function profperm_content(App $a) { if (dbm::is_result($r)) { $textmode = (($switchtotext && (count($r) > $switchtotext)) ? true : false); - foreach ($r as $member) { - if (! in_array($member['id'],$ingroup)) { + foreach($r as $member) { + if(! in_array($member['id'],$ingroup)) { $member['click'] = 'profChangeMember(' . $profile['id'] . ',' . $member['id'] . '); return true;'; $o .= micropro($member,true,'mpprof',$textmode); } @@ -151,7 +151,7 @@ function profperm_content(App $a) { $o .= '
'; - if ($change) { + if($change) { echo $o; killme(); }