ensure that stored tag terms are taken after term expansion, e.g. @"Mike Macgirvin" and not @"mike+2"

This commit is contained in:
friendica 2013-02-02 04:38:40 -08:00
parent d4a6e5e513
commit e2dd38b0bc

View File

@ -434,7 +434,7 @@ function item_post(&$a) {
'uid' => $profile_uid, 'uid' => $profile_uid,
'type' => $success['termtype'], 'type' => $success['termtype'],
'otype' => TERM_OBJ_POST, 'otype' => TERM_OBJ_POST,
'term' => substr($tag,1), 'term' => $success['term'],
'url' => $success['url'] 'url' => $success['url']
); );
} }
@ -853,7 +853,7 @@ function handle_tag($a, &$body, &$inform, &$str_tags, $profile_uid, $tag) {
$str_tags .= ','; $str_tags .= ',';
$str_tags .= $newtag; $str_tags .= $newtag;
} }
return array('replaced' => $replaced, 'termtype' => $termtype, 'url' => $url, 'contact' => $r[0]); return array('replaced' => $replaced, 'termtype' => $termtype, 'term' => $basetag, 'url' => $url, 'contact' => $r[0]);
} }
//is it a person tag? //is it a person tag?
if(strpos($tag,'@') === 0) { if(strpos($tag,'@') === 0) {
@ -965,7 +965,7 @@ function handle_tag($a, &$body, &$inform, &$str_tags, $profile_uid, $tag) {
} }
} }
return array('replaced' => $replaced, 'termtype' => $termtype, 'url' => $url, 'contact' => $r[0]); return array('replaced' => $replaced, 'termtype' => $termtype, 'term' => $newname, 'url' => $url, 'contact' => $r[0]);
} }