X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fsuggest.php;h=a82dca7945d87614da9f90f4fceccb57d38390a6;hb=5d7e1e1a1544421c594e13efb9c1ebece241e94f;hp=514b8f83c6dad32d187375eb83e8ed9d8c7cc967;hpb=4dce3d822470537e40a0f77330d62ac05bf73806;p=friendica.git diff --git a/mod/suggest.php b/mod/suggest.php index 514b8f83c6..a82dca7945 100644 --- a/mod/suggest.php +++ b/mod/suggest.php @@ -1,22 +1,24 @@ can't take arguments in its "action" parameter // so add any arguments as hidden inputs $query = explode_querystring($a->query_string); $inputs = array(); - foreach($query['args'] as $arg) { - if(strpos($arg, 'confirm=') === false) { + foreach ($query['args'] as $arg) { + if (strpos($arg, 'confirm=') === false) { $arg_parts = explode('=', $arg); $inputs[] = array('name' => $arg_parts[0], 'value' => $arg_parts[1]); } @@ -35,7 +37,7 @@ function suggest_init(App &$a) { return; } // Now check how the user responded to the confirmation query - if(!$_REQUEST['canceled']) { + if (!$_REQUEST['canceled']) { q("INSERT INTO `gcign` ( `uid`, `gcid` ) VALUES ( %d, %d ) ", intval(local_user()), intval($_GET['ignore']) @@ -49,12 +51,12 @@ function suggest_init(App &$a) { -function suggest_content(App &$a) { +function suggest_content(App $a) { require_once("mod/proxy.php"); $o = ''; - if(! local_user()) { + if (! local_user()) { notice( t('Permission denied.') . EOL); return; } @@ -74,7 +76,7 @@ function suggest_content(App &$a) { require_once 'include/contact_selectors.php'; - foreach($r as $rr) { + foreach ($r as $rr) { $connlnk = App::get_baseurl() . '/follow/?url=' . (($rr['connect']) ? $rr['connect'] : $rr['url']); $ignlnk = App::get_baseurl() . '/suggest?ignore=' . $rr['id'];