BBcode, Tags - changes for #pullrequestreview-197771905

This commit is contained in:
Peter Liebetrau 2019-01-29 22:34:28 +01:00
parent 5080778ea6
commit c3e5c77eb3
1 changed files with 7 additions and 9 deletions

View File

@ -2441,12 +2441,11 @@ class Item extends BaseObject
"#$2", $item["body"]);
foreach ($tags as $tag) {
if ((strpos($tag, '#') !== 0) || strpos($tag, '[url=')) {
if ((strpos($tag, '#') !== 0) || strpos($tag, '[url=') || $tag[1] == '#') {
continue;
}
$basetag = str_replace('_',' ',substr($tag,1));
if($basetag[0] != '#') {
$newtag = '#[url=' . System::baseUrl() . '/search?tag=' . $basetag . ']' . $basetag . '[/url]';
$item["body"] = str_replace($tag, $newtag, $item["body"]);
@ -2458,7 +2457,6 @@ class Item extends BaseObject
$item["tag"] = $newtag . $item["tag"];
}
}
}
// Convert back the masked hashtags
$item["body"] = str_replace("#", "#", $item["body"]);