X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;ds=inline;f=mod%2Fmatch.php;h=5dd80fe3efad761e90757e6e34ef31595e076d5d;hb=4ba29089d27912fc0e742fb1e1d1c12b6719c5c5;hp=f3c78bc7dcd082e9bc1c6b45f93af0607a9c2183;hpb=c74367e4c2dbcb9ef20bc07a3ea815902c61600a;p=friendica.git diff --git a/mod/match.php b/mod/match.php index f3c78bc7dc..5dd80fe3ef 100644 --- a/mod/match.php +++ b/mod/match.php @@ -7,7 +7,7 @@ function match_content(&$a) { if(! local_user()) return; - $o .= '

' . t('Profile Keyword Match') . '

'; + $o .= '

' . t('Profile Match') . '

'; $r = q("SELECT `pub_keywords`, `prv_keywords` FROM `profile` WHERE `is-default` = 1 AND `uid` = %d LIMIT 1", intval(local_user()) @@ -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 +}