X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fmatch.php;h=5dd80fe3efad761e90757e6e34ef31595e076d5d;hb=4ba29089d27912fc0e742fb1e1d1c12b6719c5c5;hp=2742b4a887844fd14ba6c4eb3774cf1d18b82721;hpb=e1107b55c6715d131ca808890ce51c6301e56ccc;p=friendica.git diff --git a/mod/match.php b/mod/match.php index 2742b4a887..5dd80fe3ef 100644 --- a/mod/match.php +++ b/mod/match.php @@ -15,7 +15,7 @@ function match_content(&$a) { if(! count($r)) return; if(! $r[0]['pub_keywords'] && (! $r[0]['prv_keywords'])) { - notice('No keywords to match. Please add keywords to your default profile.'); + notice( t('No keywords to match. Please add keywords to your default profile.') . EOL); return; } @@ -26,8 +26,11 @@ function match_content(&$a) { $params['s'] = $tags; if($a->pager['page'] != 1) $params['p'] = $a->pager['page']; - - $x = post_url('http://dir.friendika.com/msearch', $params); + + if(strlen(get_config('system','directory_submit_url'))) + $x = post_url('http://dir.friendika.com/msearch', $params); + else + $x = post_url($a->get_baseurl() . '/msearch', $params); $j = json_decode($x); @@ -38,8 +41,9 @@ function match_content(&$a) { if(count($j->results)) { foreach($j->results as $jj) { + $o .= '
'; - $o .= '' . '' . $jj->name . '
'; + $o .= '' . '' . $jj->name . '
'; $o .= '
'; $o .= '
' . $jj->name . '
'; $o .= '
';