X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fprofperm.php;h=99b58516d3e420b4e1dda7402d8f179d8a979948;hb=3b23f89ca257f972aa9c7beffdd308b1fd1b37e6;hp=0a4b3e9a470697555d1def50a565f3dbaf75c9b4;hpb=0436782e70f496c96f30ee7822865f777ae1d73e;p=friendica.git diff --git a/mod/profperm.php b/mod/profperm.php index 0a4b3e9a47..99b58516d3 100644 --- a/mod/profperm.php +++ b/mod/profperm.php @@ -1,6 +1,11 @@ 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 @@ -43,7 +46,7 @@ function profperm_content(&$a) { intval($a->argv[2]), intval(local_user()) ); - if (dbm::is_result($r)) + if (DBM::is_result($r)) $change = intval($a->argv[2]); } @@ -53,7 +56,7 @@ function profperm_content(&$a) { intval($a->argv[1]), intval(local_user()) ); - if (! dbm::is_result($r)) { + if (! DBM::is_result($r)) { notice( t('Invalid profile identifier.') . EOL ); return; } @@ -65,7 +68,7 @@ function profperm_content(&$a) { ); $ingroup = array(); - if (dbm::is_result($r)) + if (DBM::is_result($r)) foreach($r as $member) $ingroup[] = $member['id']; @@ -95,7 +98,7 @@ function profperm_content(&$a) { $members = $r; $ingroup = array(); - if (dbm::is_result($r)) + if (DBM::is_result($r)) foreach($r as $member) $ingroup[] = $member['id']; } @@ -109,9 +112,9 @@ function profperm_content(&$a) { } $o .= '
'; - if($change) + if($change) $o = ''; - + $o .= '
'; $o .= '

' . t('Visible To') . '

'; $o .= '
'; @@ -139,7 +142,7 @@ function profperm_content(&$a) { dbesc(NETWORK_DFRN) ); - if (dbm::is_result($r)) { + if (DBM::is_result($r)) { $textmode = (($switchtotext && (count($r) > $switchtotext)) ? true : false); foreach($r as $member) { if(! in_array($member['id'],$ingroup)) {