show keywords in match results
This commit is contained in:
parent
cd7098501e
commit
e795d1265e
2 changed files with 3 additions and 2 deletions
|
@ -16,7 +16,7 @@ function msearch_post(&$a) {
|
|||
if(count($r))
|
||||
$total = $r[0]['total'];
|
||||
|
||||
$r = q("SELECT `username`, `nickname`, `user`.`uid` FROM `user` LEFT JOIN `profile` ON `user`.`uid` = `profile`.`uid` WHERE `is-default` = 1 AND `hidewall` = 0 AND MATCH `pub_keywords` AGAINST ('%s') LIMIT %d , %d ",
|
||||
$r = q("SELECT `pub_keywords`, `username`, `nickname`, `user`.`uid` FROM `user` LEFT JOIN `profile` ON `user`.`uid` = `profile`.`uid` WHERE `is-default` = 1 AND `hidewall` = 0 AND MATCH `pub_keywords` AGAINST ('%s') LIMIT %d , %d ",
|
||||
dbesc($search),
|
||||
intval($startrec),
|
||||
intval($perpage)
|
||||
|
@ -29,6 +29,7 @@ function msearch_post(&$a) {
|
|||
'name' => $rr['name'],
|
||||
'url' => $a->get_baseurl() . '/profile/' . $rr['nickname'],
|
||||
'photo' => $a->get_baseurl() . '/photo/avatar/' . $rr['uid'] . 'jpg'
|
||||
'tags' => str_replace(array(',',' '),array(' ',' '),$rr['pub_keywords']);
|
||||
);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue