Merge pull request #3663 from annando/no-redir

Don't add "redir" links on mentions
This commit is contained in:
Tobias Diekershoff 2017-08-27 12:48:40 +02:00 committed by GitHub
commit ccb54f3ee4
1 changed files with 3 additions and 4 deletions

View File

@ -1331,11 +1331,10 @@ function prepare_body(&$item, $attach = false, $preview = false) {
$tag["url"] = best_link_url($item, $sp, $tag["url"]);
if ($orig_tag != $tag["url"]) {
$item['body'] = str_replace($orig_tag, $tag["url"], $item['body']);
}
if ($tag["type"] == TERM_HASHTAG) {
if ($orig_tag != $tag["url"]) {
$item['body'] = str_replace($orig_tag, $tag["url"], $item['body']);
}
$hashtags[] = "#<a href=\"".$tag["url"]."\" target=\"_blank\">".$tag["term"]."</a>";
$prefix = "#";
} elseif ($tag["type"] == TERM_MENTION) {