msearch typo

This commit is contained in:
Friendika 2011-07-04 00:46:23 -07:00
parent a82e0e32b3
commit 78363ecfb1
1 changed files with 2 additions and 2 deletions

View File

@ -28,8 +28,8 @@ function msearch_post(&$a) {
$results[] = array(
'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']);
'photo' => $a->get_baseurl() . '/photo/avatar/' . $rr['uid'] . 'jpg',
'tags' => str_replace(array(',',' '),array(' ',' '),$rr['pub_keywords'])
);
}