X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fmatch.php;h=5dd80fe3efad761e90757e6e34ef31595e076d5d;hb=c8cf2d1773623980d8055ff392b400aecb2a09b3;hp=7228529d74eb9bc136715c6e8d8235f6b1bb93d1;hpb=767b4f30f7ee114b1cfd66e68fa959ac033b5667;p=friendica.git diff --git a/mod/match.php b/mod/match.php index 7228529d74..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,19 +41,21 @@ 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 .= '
' . $jj->name . '
'; $o .= '
'; } + $o .= '
'; } else { - notice( t('No matches') . EOL); + info( t('No matches') . EOL); } } $o .= paginate($a); return $o; -} \ No newline at end of file +}