fix localize item tag

This commit is contained in:
Fabio Comuni 2011-11-16 11:27:20 +01:00
parent dc3d47edcf
commit ef8b5bc682
1 changed files with 1 additions and 2 deletions

View File

@ -112,10 +112,9 @@ function localize_item(&$item){
$parsedobj = parse_xml_string($xmlhead.$item['object']);
$tag = sprintf('#[url=%s]%s[/url]', $parsedobj->link, $parsedobj->content);
$tag = sprintf('#[url=%s]%s[/url]', $parsedobj->id, $parsedobj->content);
$item['body'] = sprintf( t('%1$s tagged %2$s\'s %3$s with %4$s'), $author, $objauthor, $plink, $tag );
}
}