X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Flockview.php;h=ced03d1b569edb707141b176bbb1ea5004cebbe0;hb=e36f2bb1fb3439e9993c7568e57140c4f954b772;hp=746df28cd9478bbbef134dbbe8a797c3c8a0750c;hpb=f42d76858655fc62dfbd05c0bcf2f6a49ea0bf30;p=friendica.git diff --git a/mod/lockview.php b/mod/lockview.php index 746df28cd9..ced03d1b56 100644 --- a/mod/lockview.php +++ b/mod/lockview.php @@ -1,8 +1,10 @@ argc > 1) ? $a->argv[1] : 0); if (is_numeric($type)) { $item_id = intval($type); @@ -10,18 +12,18 @@ function lockview_content(App &$a) { } else { $item_id = (($a->argc > 2) ? intval($a->argv[2]) : 0); } - + if(! $item_id) killme(); - if (!in_array($type, array('item','photo','event'))) + if (!in_array($type, ['item','photo','event'])) killme(); - + $r = q("SELECT * FROM `%s` WHERE `id` = %d LIMIT 1", dbesc($type), intval($item_id) ); - if (! dbm::is_result($r)) { + if (! DBM::is_result($r)) { killme(); } $item = $r[0]; @@ -34,7 +36,7 @@ function lockview_content(App &$a) { } - if(($item['private'] == 1) && (! strlen($item['allow_cid'])) && (! strlen($item['allow_gid'])) + if(($item['private'] == 1) && (! strlen($item['allow_cid'])) && (! strlen($item['allow_gid'])) && (! strlen($item['deny_cid'])) && (! strlen($item['deny_gid']))) { echo t('Remote privacy information not available.') . '
'; @@ -47,22 +49,22 @@ function lockview_content(App &$a) { $deny_groups = expand_acl($item['deny_gid']); $o = t('Visible to:') . '
'; - $l = array(); + $l = []; if(count($allowed_groups)) { $r = q("SELECT `name` FROM `group` WHERE `id` IN ( %s )", dbesc(implode(', ', $allowed_groups)) ); - if (dbm::is_result($r)) - foreach($r as $rr) + if (DBM::is_result($r)) + foreach($r as $rr) $l[] = '' . $rr['name'] . ''; } if(count($allowed_users)) { $r = q("SELECT `name` FROM `contact` WHERE `id` IN ( %s )", dbesc(implode(', ',$allowed_users)) ); - if (dbm::is_result($r)) - foreach($r as $rr) + if (DBM::is_result($r)) + foreach($r as $rr) $l[] = $rr['name']; } @@ -71,16 +73,16 @@ function lockview_content(App &$a) { $r = q("SELECT `name` FROM `group` WHERE `id` IN ( %s )", dbesc(implode(', ', $deny_groups)) ); - if (dbm::is_result($r)) - foreach($r as $rr) + if (DBM::is_result($r)) + foreach($r as $rr) $l[] = '' . $rr['name'] . ''; } if(count($deny_users)) { $r = q("SELECT `name` FROM `contact` WHERE `id` IN ( %s )", dbesc(implode(', ',$deny_users)) ); - if (dbm::is_result($r)) - foreach($r as $rr) + if (DBM::is_result($r)) + foreach($r as $rr) $l[] = '' . $rr['name'] . ''; }