X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fmatch.php;h=c33bbd5c2de7b5d9deaec1463df9fdb95252bf63;hb=6a8b96709e13b04a0657c25b4538c160e2118131;hp=092595a09c5e91f70e6496c5a7e729468109db6c;hpb=1bba63fb607c2cb5fb2c002e63ad7128ecf8b1ea;p=friendica.git diff --git a/mod/match.php b/mod/match.php index 092595a09c..c33bbd5c2d 100644 --- a/mod/match.php +++ b/mod/match.php @@ -15,19 +15,23 @@ 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; } $params = array(); $tags = trim($r[0]['pub_keywords'] . ' ' . $r[0]['prv_keywords']); + if($tags) { $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); @@ -37,21 +41,25 @@ function match_content(&$a) { } if(count($j->results)) { + + $tpl = get_markup_template('match.tpl'); foreach($j->results as $jj) { - $o .= '
'; - $o .= '' . '' . $jj->name . '
'; - $o .= '
'; - $o .= '
' . $jj->name . '
'; - $o .= '
'; + + $o .= replace_macros($tpl,array( + '$url' => $jj->url, + '$name' => $jj->name, + '$photo' => $jj->photo, + '$tags' => $jj->tags + )); } - $o .= '
'; } else { - notice( t('No matches') . EOL); + info( t('No matches') . EOL); } } + $o .= cleardiv(); $o .= paginate($a); return $o; -} \ No newline at end of file +}