mirror of
https://git.sekbaer.de/Friendica/friendica.git
synced 2025-06-11 01:24:27 +02:00
use local 'match people with my interests' if global directory is not configured
This commit is contained in:
parent
fb0e758ce7
commit
e6aaa8b59b
2 changed files with 8 additions and 4 deletions
|
@ -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;
|
||||
|
||||
}
|
||||
|
@ -27,7 +27,10 @@ function match_content(&$a) {
|
|||
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);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue