added more curly braces + space between "if" and brace
Signed-off-by: Roland Häder <roland@mxchange.org> Conflicts: mod/admin.php
This commit is contained in:
parent
4805aa8fdb
commit
de689583e2
15 changed files with 225 additions and 167 deletions
|
|
@ -12,8 +12,9 @@ function dirfind_init(&$a) {
|
|||
return;
|
||||
}
|
||||
|
||||
if(! x($a->page,'aside'))
|
||||
if (! x($a->page,'aside')) {
|
||||
$a->page['aside'] = '';
|
||||
}
|
||||
|
||||
$a->page['aside'] .= findpeople_widget();
|
||||
|
||||
|
|
@ -31,7 +32,7 @@ function dirfind_content(&$a, $prefix = "") {
|
|||
|
||||
$search = $prefix.notags(trim($_REQUEST['search']));
|
||||
|
||||
if(strpos($search,'@') === 0) {
|
||||
if (strpos($search,'@') === 0) {
|
||||
$search = substr($search,1);
|
||||
$header = sprintf( t('People Search - %s'), $search);
|
||||
if ((valid_email($search) AND validate_email($search)) OR
|
||||
|
|
@ -41,7 +42,7 @@ function dirfind_content(&$a, $prefix = "") {
|
|||
}
|
||||
}
|
||||
|
||||
if(strpos($search,'!') === 0) {
|
||||
if (strpos($search,'!') === 0) {
|
||||
$search = substr($search,1);
|
||||
$community = true;
|
||||
$header = sprintf( t('Forum Search - %s'), $search);
|
||||
|
|
@ -49,7 +50,7 @@ function dirfind_content(&$a, $prefix = "") {
|
|||
|
||||
$o = '';
|
||||
|
||||
if($search) {
|
||||
if ($search) {
|
||||
|
||||
if ($discover_user) {
|
||||
$j = new stdClass();
|
||||
|
|
@ -85,15 +86,19 @@ function dirfind_content(&$a, $prefix = "") {
|
|||
$perpage = 80;
|
||||
$startrec = (($a->pager['page']) * $perpage) - $perpage;
|
||||
|
||||
if (get_config('system','diaspora_enabled'))
|
||||
if (get_config('system','diaspora_enabled')) {
|
||||
$diaspora = NETWORK_DIASPORA;
|
||||
else
|
||||
}
|
||||
else {
|
||||
$diaspora = NETWORK_DFRN;
|
||||
}
|
||||
|
||||
if (!get_config('system','ostatus_disabled'))
|
||||
if (!get_config('system','ostatus_disabled')) {
|
||||
$ostatus = NETWORK_OSTATUS;
|
||||
else
|
||||
}
|
||||
else {
|
||||
$ostatus = NETWORK_DFRN;
|
||||
}
|
||||
|
||||
$search2 = "%".$search."%";
|
||||
|
||||
|
|
@ -133,8 +138,9 @@ function dirfind_content(&$a, $prefix = "") {
|
|||
$j->items_page = $perpage;
|
||||
$j->page = $a->pager['page'];
|
||||
foreach ($results AS $result) {
|
||||
if (poco_alternate_ostatus_url($result["url"]))
|
||||
continue;
|
||||
if (poco_alternate_ostatus_url($result["url"])) {
|
||||
continue;
|
||||
}
|
||||
|
||||
$result = get_contact_details_by_url($result["url"], local_user(), $result);
|
||||
|
||||
|
|
@ -167,16 +173,16 @@ function dirfind_content(&$a, $prefix = "") {
|
|||
$j = json_decode($x);
|
||||
}
|
||||
|
||||
if($j->total) {
|
||||
if ($j->total) {
|
||||
$a->set_pager_total($j->total);
|
||||
$a->set_pager_itemspage($j->items_page);
|
||||
}
|
||||
|
||||
if(count($j->results)) {
|
||||
if (count($j->results)) {
|
||||
|
||||
$id = 0;
|
||||
|
||||
foreach($j->results as $jj) {
|
||||
foreach ($j->results as $jj) {
|
||||
|
||||
$alt_text = "";
|
||||
|
||||
|
|
@ -194,8 +200,10 @@ function dirfind_content(&$a, $prefix = "") {
|
|||
$photo_menu = contact_photo_menu($contact[0]);
|
||||
$details = _contact_detail_for_template($contact[0]);
|
||||
$alt_text = $details['alt_text'];
|
||||
} else
|
||||
}
|
||||
else {
|
||||
$photo_menu = array();
|
||||
}
|
||||
} else {
|
||||
$connlnk = App::get_baseurl().'/follow/?url='.(($jj->connect) ? $jj->connect : $jj->url);
|
||||
$conntxt = t('Connect');
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue