X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fprofperm.php;h=c67a0202e057921882477fbf9d55fcec0d726c60;hb=737e40b4d9cb363eee831074b9c560bdbbdeba79;hp=6fb717294994ee0509a19aeef8bea83099c90577;hpb=0c764684bb32a9432fd161e62db907efb78af1a5;p=friendica.git diff --git a/mod/profperm.php b/mod/profperm.php index 6fb7172949..c67a0202e0 100644 --- a/mod/profperm.php +++ b/mod/profperm.php @@ -1,22 +1,24 @@ user['nickname']; $profile = $a->argv[1]; profile_load($a,$which,$profile); -} + } -if(! function_exists('profperm_content')) { -function profperm_content(&$a) { - if(! local_user()) { +function profperm_content(App $a) { + + if (! local_user()) { notice( t('Permission denied') . EOL); return; } @@ -43,7 +45,7 @@ function profperm_content(&$a) { intval($a->argv[2]), intval(local_user()) ); - if(count($r)) + if (dbm::is_result($r)) $change = intval($a->argv[2]); } @@ -53,7 +55,7 @@ function profperm_content(&$a) { intval($a->argv[1]), intval(local_user()) ); - if(! count($r)) { + if (! dbm::is_result($r)) { notice( t('Invalid profile identifier.') . EOL ); return; } @@ -65,7 +67,7 @@ function profperm_content(&$a) { ); $ingroup = array(); - if(count($r)) + if (dbm::is_result($r)) foreach($r as $member) $ingroup[] = $member['id']; @@ -95,7 +97,7 @@ function profperm_content(&$a) { $members = $r; $ingroup = array(); - if(count($r)) + if (dbm::is_result($r)) foreach($r as $member) $ingroup[] = $member['id']; } @@ -139,7 +141,7 @@ function profperm_content(&$a) { dbesc(NETWORK_DFRN) ); - if(count($r)) { + if (dbm::is_result($r)) { $textmode = (($switchtotext && (count($r) > $switchtotext)) ? true : false); foreach($r as $member) { if(! in_array($member['id'],$ingroup)) { @@ -157,5 +159,6 @@ function profperm_content(&$a) { } $o .= ''; return $o; + } -} +